Centrifugal Bumblekitten 2

This program has been disqualified.


Authordllu
Submission date2011-07-08 22:41:22.111894
Rating7764
Matches played973
Win rate76.26

Source code:

#see also www.dllu.net/rps.html
import random
import re
numPre = 18
numMeta = 18
if not input:
	limits = [30,16,6]
	beat={'R':'P','P':'S','S':'R'}
	moves=['','','']
	pScore=[[3]*numPre,[3]*numPre,[3]*numPre,[3]*numPre,[3]*numPre,[3]*numPre]
	centrifuge={'RP':'a','PS':'b','SR':'c','PR':'d','SP':'e','RS':'f','RR':'g','PP':'h','SS':'i'}
	length=0
	p=[random.choice("RPS")]*numPre
	m=[random.choice("RPS")]*numMeta
	mScore=[3]*numMeta
	helicase=[0,0,0,0,0,0]
else:
	for i in range(numPre):
		pScore[0][i]=0.8*pScore[0][i]+((input==p[i])-(input==beat[beat[p[i]]]))*3
		pScore[1][i]=0.8*pScore[1][i]+((output==p[i])-(output==beat[beat[p[i]]]))*3
		pScore[2][i]=0.87*pScore[2][i]+(input==p[i])*3.3-(input==beat[p[i]])*0.9-(input==beat[beat[p[i]]])*3
		pScore[3][i]=0.87*pScore[3][i]+(output==p[i])*3.3-(output==beat[p[i]])*0.9-(output==beat[beat[p[i]]])*3
		pScore[4][i]=(pScore[4][i]+(input==p[i])*3)*(1-(input==beat[beat[p[i]]]))
		pScore[5][i]=(pScore[5][i]+(output==p[i])*3)*(1-(output==beat[beat[p[i]]]))
	for i in range(numMeta):
		mScore[i]=(mScore[i]+(input==m[i]))*(1-(input==beat[beat[m[i]]]))
	moves[0]+=centrifuge[input+output]
	moves[1]+=input		
	moves[2]+=output
	length+=1
	"""
	for z in range(3):
		limit = min([length,limits[z]])
		j=1001
		for y in range(3):
			if j>limit:
				j=limit
				while j>=1 and not moves[y][length-j:length] in moves[y][0:length-1]:
					j-=1
				i = moves[y].rfind(moves[y][length-j:length],0,length-1)
					
			p[0+3*y+9*z] = moves[1][j+i]
			p[1+3*y+6*z] = beat[moves[2][j+i]]
	"""
	j=10
	k={}
	while j>=1 and not moves[0][length-j:length] in moves[0][0:length-1]:
		j-=1
	for x in "abcdefghi":
		k[x] = len(re.findall(r'(?<=%s)%s' % (moves[0][length-j:length], x), moves[0][0:length-1]))
	kR =k['a']+k['f']+k['g']
	kP =k['b']+k['d']+k['h']
	kS =k['c']+k['e']+k['i']
	kR0=k['c']+k['d']+k['g']
	kP0=k['a']+k['e']+k['h']
	kS0=k['b']+k['f']+k['i']
	p[0]="RPS"[[kR -kS ,kP -kR ,kS -kP ].index(max([kR -kS ,kP -kR ,kS -kP ]))]
	p[1]="PSR"[[kR0-kS0,kP0-kR0,kS0-kP0].index(max([kR0-kS0,kP0-kR0,kS0-kP0]))]
	p[2]="RPS"[[kR     ,kP     ,kS     ].index(max([kR     ,kP     ,kS     ]))]
	p[3]="PSR"[[kR0    ,kP0    ,kS0    ].index(max([kR0    ,kP0    ,kS0    ]))]
	
	helicase[0] = helicase[0]*0.95+{'R':0,'P':-0.1,'S':0.1}[output]
	helicase[1] = helicase[1]*0.95+{'R':0.1,'P':0,'S':-0.1}[output]
	helicase[2] = helicase[2]*0.95+{'R':-0.1,'P':0.1,'S':0}[output]
	p[4] = {0:'R',1:'P',2:'S',3:'R',4:'P',5:'S'}[helicase.index(max(helicase[0:3]))]
	
	helicase[3] = helicase[3]*0.95+{'R':0.1,'P':0,'S':-0.1}[input]
	helicase[4] = helicase[4]*0.95+{'R':-0.1,'P':0.1,'S':0}[input]
	helicase[5] = helicase[5]*0.95+{'R':0,'P':-0.1,'S':0.1}[input]
	p[5] = {0:'R',1:'P',2:'S',3:'R',4:'P',5:'S'}[helicase.index(max(helicase[3:6]))]
	
	for i in range(4,4*3):
		p[i]=beat[beat[p[i-4]]]
		
	for i in range(0,6,2):
		m[i]=       p[pScore[i  ].index(max(pScore[i  ]))]
		m[i+1]=beat[p[pScore[i+1].index(max(pScore[i+1]))]]
	for i in range(6,18):
		m[i]=beat[beat[m[i-6]]]
output = beat[m[mScore.index(max(mScore))]]
if random.random<0.13 or random.randint(3,40)>length:
	output=beat[random.choice("RPS")]