Author | _RV_ |
Submission date | 2011-05-25 21:44:54.298486 |
Rating | 7061 |
Matches played | 7701 |
Win rate | 72.26 |
Use rpsrunner.py to play unranked matches on your computer.
import math,random
#AaaAaaAaa was an AaaAaaAaaccident, just like life. Evolution or intelligent design?
memory=8
if (input=='R' and output=='P') or (input=='P' and output=='S') or (input=='S' and output=='R'):
try:
wcount+=1
except NameError:
wcount=0
else:
try:
lcount+=1
except NameError:
lcount=0
try:
count+=2
except NameError:
count=0
try:
hist+=input
except NameError:
hist=""
hist+=input
try:
prev['ABCDE']=0
except NameError:
prev=dict()
l=len(hist)
if l>=memory+2:
word=str(hist[l-memory-2])
for i in range(-memory-1,-2):
word=word+str(hist[l+i])
if not word in prev:
prev[word]=dict()
if hist[l-1] in prev[word]:
prev[word][hist[l-1]]+=1
else:
prev[word][hist[l-1]]=1
if count<100:
output = random.choice(["R","P","S"])
else:
guess=str(hist[l-memory])
for i in range(-memory+1,0):
guess=guess+str(hist[l+i])
if guess in prev:
predict=max(prev[guess])
output={'R':'P', 'P':'S', 'S':'R'}[predict]
else:
output=random.choice(["R","P","S"])
hist+=output