Author | pepenacho |
Submission date | 2016-04-06 23:27:16.617636 |
Rating | 2368 |
Matches played | 400 |
Win rate | 22.25 |
Use rpsrunner.py to play unranked matches on your computer.
#!/usr/bin/env python
#no uso RPS sino WLD (win-lose-draw),
#asumo que el otro programa esta respondiendo a mi input
#WLD se calcula relativo a su input inmediato anterior
def myResult(myInput, hisInput):
if(myInput == "R"):
if(hisInput == "R"):
return "D"
if(hisInput == "P"):
return "L"
if(hisInput == "S"):
return "W"
if(myInput == "P"):
if(hisInput == "R"):
return "W"
if(hisInput == "P"):
return "D"
if(hisInput == "S"):
return "L"
if(myInput == "S"):
if(hisInput == "R"):
return "L"
if(hisInput == "P"):
return "W"
if(hisInput == "S"):
return "D"
def whatDoes(action,to):
if(action == "W"):
if(to == "R"):
return "P"
if(to == "P"):
return "S"
if(to == "S"):
return "R"
if(action == "L"):
if(to == "R"):
return "S"
if(to == "P"):
return "R"
if(to == "S"):
return "P"
if(action =="D"):
return to
class Modelo:
def __init__(self, cantidadCaracts):
self.cantidadCaracts = cantidadCaracts
self.contextos = {}
self.contextoActual=""
#agrega char al contexto actual
def agregarChar(self, c):
self.contextoActual+=c
if( len(self.contextoActual) > self.cantidadCaracts):
pos =len(self.contextoActual)-self.cantidadCaracts
self.contextoActual = self.contextoActual[pos:]
if(len(self.contextoActual) == self.cantidadCaracts):
if not (self.contextoActual in self.contextos):
self.contextos[self.contextoActual] = {}
if c in self.contextos[self.contextoActual]:
self.contextos[self.contextoActual][c] += 1
else:
self.contextos[self.contextoActual][c] = 1
def mostrar(self):
for contexto,tabla in self.contextos.iteritems():
for label,cantidad in tabla.iteritems():
print "en ctx "+contexto+" N("+label+")="+str(cantidad)
print "--------------------------"
#escupe la probabilidad de que venga char dado el contexto actual
def probabilidadSiguiente(self, c):
return self.contextos[self.contextoActual][c]
def proximoMasProbable(self):
masprobable="W"
mascantidad=0
for label in self.contextos[self.contextoActual]:
cantidad =self.contextos[self.contextoActual][label]
if cantidad>mascantidad:
masprobable=label
mascantidad=cantidad
return masprobable
initialize = 1
if(input==""):
prevInput="caca"
modelo1=Modelo(1)
initialize = 0
if(input !=""):
inputReal = myResult(input, prevInput)
#input = whatDoes(inputReal, prevInput)
modelo1.agregarChar(inputReal)
"""
for c in opciones:
if(modelo1.probabilidadSiguiente(c)>modelo1.probabilidadSiguiente(masprobable)):
masprobable = c
"""
#modelo1.mostrar()
masprobable = modelo1.proximoMasProbable()
output = whatDoes(masprobable, prevInput)
#output = whatDoes("W", "R")
if(input==""):
modelo1 = Modelo(1)
prevInput ="R"#asumo que el anterior fue roca porque es mejor
output="R"
else:
prevInput = input