Spaghetti Monkey

AuthorEbTech
Submission date2011-05-21 22:18:50.106126
Rating6155
Matches played7489
Win rate57.9

Use rpsrunner.py to play unranked matches on your computer.

Source code:

import math
import random

if not input:
    prob = [0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]
    olast = 0
    ilast = 0
else:
    ilast = {'R':0, 'P':1, 'S':2}[input]
    ind = 6*oprev + 2*iprev
    prob[ind] *= 0.95
    prob[ind+1] *= 0.95
    if ilast < 2:
        prob[ind+ilast] += 0.05
ind = 6*olast + 2*ilast
rateR = math.exp(5*(1-prob[ind]-2*prob[ind+1]))
rateP = math.exp(5*(2*prob[ind]+prob[ind+1]-1))
rateS = math.exp(5*(prob[ind+1]-prob[ind]))
randNum = random.random()*(rateR+rateP+rateS)

if randNum < rateR:
    output = "R"
elif randNum < rateR+rateP:
    output = "P"
else:
    output = "S"
oprev = olast
iprev = ilast
olast = {'R':0, 'P':1, 'S':2}[output]