超百坑講壇第7期拾遺——完美的黃蓋主?(下)
上回說(shuō)到,非酋的我在苦到第一次求桃的時(shí)候就直接暴斃,由此引發(fā)了對(duì)黃蓋主當(dāng)場(chǎng)苦死產(chǎn)生了懷疑,但是當(dāng)重新調(diào)試后發(fā)現(xiàn),還是很容易苦死到場(chǎng),實(shí)際上根本沒(méi)有一次真正達(dá)到了操縱整個(gè)牌堆的場(chǎng)面,讓我對(duì)這種場(chǎng)面(標(biāo)黃蓋主,2蜀國(guó)香香,3步練師,4曹植,5神關(guān),6國(guó)太,7戲志才先輔吳國(guó)太,8周泰)的黃蓋主會(huì)不會(huì)苦死,苦死的概率產(chǎn)生了新一輪的質(zhì)疑,畢竟我再怎么非,也不可能連續(xù)個(gè)幾十次都成功吧。
先分析牌堆結(jié)構(gòu),過(guò)牌類(lèi)桃酒17張,無(wú)中4張,鐵索6張
17*5+4*3+6*2=109<161
也就是說(shuō)光靠牌堆,苦肉加良助是無(wú)法做到控制整個(gè)牌堆
但是再算上補(bǔ)益,提前苦肉預(yù)支的,本來(lái)就有的牌,通過(guò)把牌堆都拽手里來(lái)達(dá)到控制牌堆的目的。
4*8+2+2*4+109-27=124
理想情況下至少還要補(bǔ)益成功10次。。。
(所以那次的MVP果然是劉禪嗎?清掉殺就可以提高補(bǔ)益成功率了)

最后附上菜雞所用的代碼
from random import *
def getpai(alist,blist,n):
? ? global list_paidui
? ? global list_qidui
? ? if blist==list_paidui:
? ? ? ? if n>len(blist):
? ? ? ? ? ? #摸完剩下的牌
? ? ? ? ? ? for i in blist:
? ? ? ? ? ? ? ? blist.remove(i)
? ? ? ? ? ? ? ? alist.append(i)
? ? ? ? ? ? ? ? n-=1
? ? ? ? ? ? #洗牌
? ? ? ? ? ? xipai()
? ? for i in range(n):
? ? ? ? a=randint(1,161)
? ? ? ? while (a not in blist):
? ? ? ? ? ? a=randint(1,161)
? ? ? ? blist.remove(a)
? ? ? ? alist.append(a)
def xiuxue(a,b):
? ? global list_xue
? ? list_xue[a-1]+=b
def xiupai(a,n,i=0):
? ? global list1
? ? global list2
? ? global list3
? ? global list_paidui
? ? global list_qidui
? ? if n > 0:
? ? ? ? if a==1:
? ? ? ? ? ? getpai(list1,list_paidui,n)
? ? ? ? elif a==2:
? ? ? ? ? ? getpai(list2,list_paidui,n)
? ? ? ? elif a==3:
? ? ? ? ? ? getpai(list3,list_paidui,n)
? ? elif n<0:
? ? ? ? if a==1:
? ? ? ? ? ? if n==-1:
? ? ? ? ? ? ? ? if i==0:
? ? ? ? ? ? ? ? ? ? print("請(qǐng)輸入棄牌號(hào)")
? ? ? ? ? ? ? ? ? ? i=eval(input())
? ? ? ? ? ? ? ? ? ? list1.remove(i)
? ? ? ? ? ? ? ? ? ? list_qidui.append(i)
? ? ? ? ? ? ? ? ? ? #順手牽羊
? ? ? ? ? ? ? ? ? ? if i>=92 and i<=96:
? ? ? ? ? ? ? ? ? ? ? ? getpai(list1,list2,1)
? ? ? ? ? ? ? ? ? ? #過(guò)河拆橋
? ? ? ? ? ? ? ? ? ? elif i>=86 and i<=91:
? ? ? ? ? ? ? ? ? ? ? ? if len(list3)>0:
? ? ? ? ? ? ? ? ? ? ? ? ? ? xiupai(3,-1)
? ? ? ? ? ? ? ? ? ? ? ? else:
? ? ? ? ? ? ? ? ? ? ? ? ? ? xiupai(2,-1)
? ? ? ? ? ? ? ? ? ? #無(wú)中生有
? ? ? ? ? ? ? ? ? ? elif i>=97 and i<=100:
? ? ? ? ? ? ? ? ? ? ? ? xiupai(1,2)
? ? ? ? ? ? ? ? else:
? ? ? ? ? ? ? ? ? ? list1.remove(i)
? ? ? ? ? ? ? ? ? ? list_qidui.append(i)
? ? ? ? ? ? elif n<-1:
? ? ? ? ? ? ? ? getpai(list_qidui,list1,len(list1))
? ? ? ? elif a==2:
? ? ? ? ? ? getpai(list_qidui,list2,n)
? ? ? ? elif a==3:
? ? ? ? ? ? getpai(list_qidui,list3,n)
def xipai():
? ? global list_paidui
? ? global list_qidui
? ? for i in list_qidui:
? ? ? ? list_qidui.remove(i)
? ? ? ? list_paidui.append(i)
#初始化牌堆
list_paidui = []
list_qidui = []
for i in range(1,162):
? ? list_paidui.append(i)
#初始化人員手牌
list1=[]#黃蓋主手牌
list2=[]#可順手牽羊人員手牌
list3=[]#只能過(guò)河拆橋人員手牌
getpai(list1,list_paidui,16)
getpai(list2,list_paidui,16)
getpai(list3,list_paidui,12)
#初始化人員血量
list_xue=[0,3,3,3,5,3,3,4]
#開(kāi)始操作
flag=1
while flag:
? ? print("血:",list_xue)
? ? list1.sort()
? ? print("蓋:",list1,len(list1))
? ? list2.sort()
? ? print(list2)
? ? list3.sort()
? ? print(list3)
? ? print("開(kāi)始操作:0結(jié)束游戲1修血2修牌3瀕死4查堆5得牌")
? ? flag=eval(input())
? ? if flag==0:
? ? ? ? break
? ? elif flag==1:
? ? ? ? print("修誰(shuí)的血?輸入幾號(hào)位")
? ? ? ? a=eval(input())
? ? ? ? print("怎么修?")
? ? ? ? b=eval(input())
? ? ? ? xiuxue(a,b)
? ? elif flag==2:
? ? ? ? print("修誰(shuí)的牌?輸入幾號(hào)位")
? ? ? ? a=eval(input())
? ? ? ? print("怎么修?")
? ? ? ? b=eval(input())
? ? ? ? xiupai(a,b)
? ? elif flag==3:
? ? ? ? #補(bǔ)益
? ? ? ? a=randint(1,161)
? ? ? ? while (a not in list1):
? ? ? ? ? ? a=randint(1,161)
? ? ? ? print("補(bǔ)益牌是:",a)
? ? ? ? if a>85:
? ? ? ? ? ? print("補(bǔ)益成功")
? ? ? ? ? ? xiupai(1,-1,a)
? ? ? ? ? ? xiupai(1,4)
? ? ? ? else:
? ? ? ? ? ? print("補(bǔ)益失敗")
? ? ? ? #桃酒
? ? ? ? for i in list1:
? ? ? ? ? ? if i>=69 and i<=85:
? ? ? ? ? ? ? ? xiupai(1,-1,i)
? ? ? ? ? ? ? ? xiupai(1,4)
? ? ? ? ? ? ? ? print("自救成功")
? ? ? ? ? ? ? ? break
? ? ? ? #桃園結(jié)義
? ? ? ? for i in list1:
? ? ? ? ? ? if i==106:
? ? ? ? ? ? ? ? xiupai(1,-1,i)
? ? ? ? ? ? ? ? xiupai(1,4)
? ? ? ? ? ? ? ? print("自救成功")
? ? ? ? ? ? ? ? break
? ? elif flag==4:
? ? ? ? print("牌堆:",list_paidui,len(list_paidui))
? ? ? ? print("棄堆:",list_qidui,len(list_qidui))
? ? elif flag==5:
? ? ? ? for i in list1:
? ? ? ? ? ? #無(wú)中生有
? ? ? ? ? ? if i>=97 and i<=100:
? ? ? ? ? ? ? ? list1.remove(i)
? ? ? ? ? ? ? ? list_qidui.append(i)
? ? ? ? ? ? ? ? xiupai(1,2)
? ? ? ? ? ? #五谷豐登
? ? ? ? ? ? elif i>=107 and i<=108:
? ? ? ? ? ? ? ? list1.remove(i)
? ? ? ? ? ? ? ? list_qidui.append(i)
? ? ? ? ? ? ? ? list4=[]
? ? ? ? ? ? ? ? getpai(list4,list_paidui,8)
? ? ? ? ? ? ? ? print(list4,"選一張")
? ? ? ? ? ? ? ? print("建議選取桃酒69-85,桃園106")
? ? ? ? ? ? ? ? print("次選五谷107-108,無(wú)中97-100")
? ? ? ? ? ? ? ? print("最次非基本>85")
? ? ? ? ? ? ? ? a=eval(input())
? ? ? ? ? ? ? ? list4.remove(a)
? ? ? ? ? ? ? ? list1.append(a)
? ? ? ? ? ? ? ? for x in list4:
? ? ? ? ? ? ? ? ? ? list4.remove(x)
? ? ? ? ? ? ? ? ? ? if len(list4)>=5:
? ? ? ? ? ? ? ? ? ? ? ? list2.append(x)
? ? ? ? ? ? ? ? ? ? else:
? ? ? ? ? ? ? ? ? ? ? ? list3.append(x)
? ? ? ? ? ? """#鐵索連環(huán)
? ? ? ? ? ? elif i>=123 and i<=128:
? ? ? ? ? ? ? ? list1.remove(i)
? ? ? ? ? ? ? ? list_qidui.append(i)
? ? ? ? ? ? ? ? xiupai(1,1)
? ? ? ? ? ? #順手牽羊
? ? ? ? ? ? elif i>=92 and i<=96:
? ? ? ? ? ? ? ? list1.remove(i)
? ? ? ? ? ? ? ? list_qidui.append(i)
? ? ? ? ? ? ? ? getpai(list1,list2,1)
? ? ? ? ? ? #過(guò)河拆橋
? ? ? ? ? ? elif i>=86 and i<=91:
? ? ? ? ? ? ? ? list1.remove(i)
? ? ? ? ? ? ? ? list_qidui.append(i)
? ? ? ? ? ? ? ? if len(list3)>0:
? ? ? ? ? ? ? ? ? ? xiupai(3,-1)
? ? ? ? ? ? ? ? else:
? ? ? ? ? ? ? ? ? ? xiupai(2,-1)"""
如果菜雞代碼真有人要抄著做實(shí)驗(yàn)的話(huà)……(算了,自說(shuō)自話(huà)的UP是屑)?


真就傳統(tǒng)異能,一張圖用一年。
? ? ? ? ? ? ? ? ? ? ? ??
? ? ? ? ? ? ? ? ? ??
? ? ? ??
? ? ? ??
? ? ? ??