This program has been disqualified.
Author | momo |
Submission date | 2011-06-15 08:39:21.142606 |
Rating | 857 |
Matches played | 2088 |
Win rate | 8.67 |
# [[0]* 3]* 6...
import random
def highest(v):
return random.choice([i for i in range(len(v)) if max(v) == v[i]])
def lowest(v):
return random.choice([i for i in range(len(v)) if min(v) == v[i]])
def best(c):
return highest([c[1]-c[2], c[2]-c[0], c[0]-c[1]])
if (1):
if (input == ""):
N = 1
AR1 = 1
states = ["R","S","P"]
st = [0,1,2]
sdic = {"R":0, "S":1, "P":2}
decay = 0.0
decay2 = 0.5
res = [[0, 1, -1], [-1, 0, 1], [1, -1, 0]]
total=0
r=0
M = 2
models = [1]*(M*3+1)
state = [1]*(M*3+1)
yo = random.choice(st)
tu = random.choice(st)
pa = (yo, tu)
hi = [pa]
prognosis = [random.choice(st) for i in range(M*3+1)]
choices = []
else:
tu = sdic[input]
pa = (yo,tu)
hi += [pa]
state = [ AR1 * state[i] - res[prognosis[i]][tu] * models[i] for i in range(M*3+1)]
r = res[yo][tu]
total = total + r
if 1:
count = [0,0,0]
for pos in range(max(3, N-400), N-1):
if (hi[pos-1][0] == hi[N-2][0] and hi[pos-1][0] == hi[N-1][0]):
count[hi[pos-2][0]] += 1 + pos * decay
count[(hi[pos-2][1]+2)%3] += 1 + pos * decay
if (hi[pos-1][1] == hi[N-2][1] and hi[pos-1][1] == hi[N-1][1]):
count[hi[pos-2][1]] += 1 + pos * decay
count[(hi[pos-2][1]+2)%3] += 1 + pos * decay
prognosis[0] = lowest(count)
prognosis[3] = highest(count)
prognosis[3*M] = hi[-1][0]
for i in range(M):
prognosis[i*3 + 1] = (prognosis[i*3] + 1) % 3
prognosis[i*3 + 2] = (prognosis[i*3+1] + 1) % 3
thebest = highest(state)
choices += [thebest]
yo = prognosis[thebest]
output = states[yo]
N = N + 1