Badly Weighted5

AuthorAntiDog
Submission date2018-08-08 09:40:06.403190
Rating3651
Matches played286
Win rate35.31

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

Source code:

if input == "":
	output = "P"
	oponentmoves = ""
else:
	oponentmoves += input
	if(len(oponentmoves) > 75):
		oponentmoves = oponentmoves[:75]
	r = 0.0
	p = 0.0
	s = 0.0
	for i in range(1,len(oponentmoves)):
		searchsequence = oponentmoves[len(oponentmoves)-i:]
		nextresults = oponentmoves.split(searchsequence)
		k = 0
		weight = 1.0
		for res in nextresults:
			n = 1
			k+=1
			weight = 1#(len(oponentmoves)+1)/float(len(res)+1)
			if k == 1:
				continue
			if res == "": 
				res = searchsequence
				n = len(",".join(oponentmoves.split(searchsequence)[1:]))
			if res[0] == "R":
				r += n *weight
			elif res[0] == "P":
				p += n *weight
			elif res[0] == "S":
				s += n *weight
			else:
				continue
	if r >= p and r >= s:
		output = "P"
	elif p >= s and p >= r:
		output = "S"
	else:
		output = "R"