Bayes4_0.95

Authortk2
Submission date2014-07-26 18:04:35.980884
Rating6778
Matches played563
Win rate71.4

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

Source code:

import math
import random

def action(kappa):
  p = [random.gammavariate(x+1.0,1.0) for x in kappa]
  e = [p[(i+2)%3] - p[(i+1)%3] for i in xrange(3)]
  for i in xrange(3):
    if e[i] < e[(i+1)%3] == e[(i+2)%3]:
      return random.choice([(i+1)%3,(i+2)%3])
    if e[i] <= e[(i+1)%3] < e[(i+2)%3]:
      return (i+2)%3
  return random.choice([0,1,2])

if input == '':
  hands = 'RPS'
  rhands = { 'R': 0, 'P': 1, 'S': 2 }
  stat = [[0.0 for i in xrange(3)] for j in xrange(9**3)]
  c = 0
  s = 0
else:
  c += 1
  o = rhands[input]
  if c > 3:
    stat[s][o] = 0.95 * stat[s][o] + 1.0
  s = 9 * (s % 81) + 3 * m + o
m = action(stat[s])
output = hands[m]