Skip to content

Instantly share code, notes, and snippets.

@DataWraith
Created April 5, 2013 14:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DataWraith/5319551 to your computer and use it in GitHub Desktop.
Save DataWraith/5319551 to your computer and use it in GitHub Desktop.
A rock-paper-scissors player written in Python for rpscontest.com. As of April 2013 it was ranked 85th out of 1318 contestants.
# This entry is based on Prediction by Partial Matching, a method that is used
# in data compression.
import random
from collections import defaultdict
CONTEXT_SIZE=32
if input == "":
# Initialize data structure
contexts = defaultdict(lambda: [0.1, 0.1, 0.1])
history = ''
else:
input_idx = ['R', 'P', 'S'].index(input)
# Update empty context
contexts[''][input_idx] += 1
# Update other contexts
for i in range(1, min(CONTEXT_SIZE, len(history)+1)):
contexts[history[-i:]][input_idx] += 1
history += input
history += output
# Find the best context to use for prediction. The best context has the highest
# "Most-probable Symbol"-Probability.
best_context = contexts['']
best_mpsp = max(contexts['']) / (1 + sum(contexts['']))
for i in range(1, min(CONTEXT_SIZE, len(history)+1)):
c = contexts[history[-i:]]
mpsp = max(c) / (1 + sum(c))
if mpsp > best_mpsp:
best_context = c
best_mpsp = mpsp
elif mpsp == best_mpsp:
# Merge equally good contexts
best_context[0] += c[0]
best_context[1] += c[1]
best_context[2] += c[2]
# Predict the opponent move from the context, then beat it.
output = ['P', 'S', 'R'][best_context.index(max(best_context))]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment