|
这个问题可不简易,工作量还是挺大的,主要麻烦是要把霍式可玩指数1.4以上的找出来
20BB: 99+, A9s+, KTs+, QTs+, JTs, ATo+,KTo+, QTo+
占总底牌数14.2%
50BB: TT+, A4s+, K9s+, QTs+, JTs, A9o, KTo+, QJo,
占总底牌数15.5%
100BB: 88+, ATs+, KTs+, Q9s+, J8s+, T8s+, 97s+, 87s, 76s, 65s, 54s, AQo+,KQo
占总底牌数12.2%
150BB:22+, A2s+, K9s+, Q8s+, J8s+, T7s+, 97s+, 86s+, 75s+, 64s+, 54s, AKo, JTo
占总底牌数18.3%
200BB:22+, A2s+, K2s+, Q7s+, J7s+, T6s+, 96s+, 86s+, 75s+, 64s+, 53s+, 43s, AKo, KJo+, QTo+, JTo
占总底牌数25.8%
500BB: 22+, A2s+, K2s+, Q2s+, J2s+, T6s+, 95s+, 85s+, 74s+, 64s+, 53s+, 43s, AJo, KJo+, QTo+, JTo
占总底牌数31.5%
我觉得楼上是想问自己AK,已经翻牌TPTK的情况下,对手有set or better的概率。
20BB:3.4%- select count(minFlopHandCategory(PLAYER_2,FLOPSET)) /* How often PLAYER_2 flop hand category at least set */
- from game='holdem', syntax='Generic',
- PLAYER_1='AK',
- PLAYER_2='AA-99,AxKx-Ax9x,AxKy-AxTy,KxQx-KxTx,KxQy-KxTy,QxJx,QxTx,QxJy,QxTy,JxTx'
- where exactFlopHandCategory(PLAYER_1,FLOPTOPPAIR) /* PLAYER_1 flop hand category is toppair */
复制代码 50BB:2.9%- select count(minFlopHandCategory(PLAYER_2,FLOPSET)) /* How often PLAYER_2 flop hand category at least set */ as COUNT1
- from game='holdem', syntax='Generic',
- PLAYER_1='AK',
- PLAYER_2='AA-TT,AxKx-Ax4x,AxKy-Ax9y,KxQx-Kx9x,KxQy-KxTy,QxJx,QxTx,QxJy,JxTx'
- where exactFlopHandCategory(PLAYER_1,FLOPTOPPAIR) /* PLAYER_1 flop hand category is toppair */
复制代码 100BB:4.1%- select count(minFlopHandCategory(PLAYER_2,FLOPSET)) /* How often PLAYER_2 flop hand category at least set */ as COUNT1
- from game='holdem', syntax='Generic',
- PLAYER_1='AK',
- PLAYER_2='AA-88,AxKx-AxTx,AxKy,AxQy,KxQx-KxTx,KxQy,QxJx-Qx9x,JxTx-Jx8x,Tx9x,Tx8x,9x8x,9x7x,8x7x,7x6x,6x5x,5x4x'
- where exactFlopHandCategory(PLAYER_1,FLOPTOPPAIR) /* PLAYER_1 flop hand category is toppair */
复制代码 150BB:4.4%- select count(minFlopHandCategory(PLAYER_2,FLOPSET)) /* How often PLAYER_2 flop hand category at least set */ as COUNT1
- from game='holdem', syntax='Generic',
- PLAYER_1='AK',
- PLAYER_2='AA-22,AxKx-Ax2x,AxKy,KxQx-Kx9x,QxJx-Qx8x,JxTx-Jx8x,JxTy,Tx9x-Tx7x,9x8x,9x7x,8x7x,8x6x,7x6x,7x5x,6x5x,6x4x,5x4x'
- where exactFlopHandCategory(PLAYER_1,FLOPTOPPAIR) /* PLAYER_1 flop hand category is toppair */
复制代码 200BB: 3.4%- select count(minFlopHandCategory(PLAYER_2,FLOPSET)) /* How often PLAYER_2 flop hand category at least set */ as COUNT1
- from game='holdem', syntax='Generic',
- PLAYER_1='AK',
- PLAYER_2='AA-22,AxKx-Ax2x,AxKy,KxQx-Kx2x,KxQy,KxJy,QxJx-Qx7x,QxJy,QxTy,JxTx-Jx7x,JxTy,Tx9x-Tx6x,9x8x-9x6x,8x7x,8x6x,7x6x,7x5x,6x5x,6x4x,5x4x,5x3x,4x3x'
- where exactFlopHandCategory(PLAYER_1,FLOPTOPPAIR) /* PLAYER_1 flop hand category is toppair */
复制代码 500BB: 3.0%- select count(minFlopHandCategory(PLAYER_2,FLOPSET)) /* How often PLAYER_2 flop hand category at least set */ as COUNT1
- from game='holdem', syntax='Generic',
- PLAYER_1='AK',
- PLAYER_2='AA-22,AxKx-Ax2x,AxKy-AxJy,KxQx-Kx2x,KxQy,KxJy,QxJx-Qx2x,QxJy,QxTy,JxTx-Jx2x,JxTy,Tx9x-Tx6x,9x8x-9x5x,8x7x-8x5x,7x6x-7x4x,6x5x,6x4x,5x4x,5x3x,4x3x'
- where exactFlopHandCategory(PLAYER_1,FLOPTOPPAIR) /* PLAYER_1 flop hand category is toppair */
复制代码 。
可见对手翻牌出set or better,并不是随着筹码增加而单调增加。其原因在于,筹码越深,对手翻牌出draw增多。深筹码对抗AK不止需要set,也需要大量的draw牌 |
|