結果

問題 No.355 数当てゲーム(2)
ユーザー cielciel
提出日時 2016-04-01 23:32:46
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 250 ms / 2,000 ms
コード長 1,457 bytes
コンパイル時間 475 ms
コンパイル使用メモリ 76,600 KB
実行使用メモリ 112,620 KB
平均クエリ数 5.29
最終ジャッジ日時 2024-07-16 23:20:48
合計ジャッジ時間 15,742 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 233 ms
111,756 KB
testcase_01 AC 242 ms
111,604 KB
testcase_02 AC 241 ms
112,008 KB
testcase_03 AC 232 ms
112,116 KB
testcase_04 AC 243 ms
112,620 KB
testcase_05 AC 236 ms
111,360 KB
testcase_06 AC 244 ms
112,124 KB
testcase_07 AC 232 ms
111,884 KB
testcase_08 AC 232 ms
111,984 KB
testcase_09 AC 227 ms
112,108 KB
testcase_10 AC 246 ms
112,048 KB
testcase_11 AC 234 ms
112,220 KB
testcase_12 AC 231 ms
111,328 KB
testcase_13 AC 238 ms
111,804 KB
testcase_14 AC 225 ms
111,868 KB
testcase_15 AC 238 ms
111,736 KB
testcase_16 AC 242 ms
112,388 KB
testcase_17 AC 231 ms
111,344 KB
testcase_18 AC 229 ms
111,368 KB
testcase_19 AC 245 ms
112,504 KB
testcase_20 AC 233 ms
112,104 KB
testcase_21 AC 236 ms
112,088 KB
testcase_22 AC 229 ms
112,204 KB
testcase_23 AC 244 ms
112,128 KB
testcase_24 AC 228 ms
112,104 KB
testcase_25 AC 231 ms
112,008 KB
testcase_26 AC 238 ms
111,616 KB
testcase_27 AC 244 ms
111,952 KB
testcase_28 AC 246 ms
112,132 KB
testcase_29 AC 232 ms
112,344 KB
testcase_30 AC 238 ms
111,872 KB
testcase_31 AC 244 ms
111,864 KB
testcase_32 AC 232 ms
111,880 KB
testcase_33 AC 245 ms
112,344 KB
testcase_34 AC 234 ms
112,472 KB
testcase_35 AC 191 ms
108,516 KB
testcase_36 AC 242 ms
111,944 KB
testcase_37 AC 228 ms
112,336 KB
testcase_38 AC 245 ms
111,952 KB
testcase_39 AC 245 ms
112,116 KB
testcase_40 AC 237 ms
112,080 KB
testcase_41 AC 239 ms
111,464 KB
testcase_42 AC 241 ms
111,696 KB
testcase_43 AC 245 ms
111,988 KB
testcase_44 AC 236 ms
111,976 KB
testcase_45 AC 224 ms
111,440 KB
testcase_46 AC 228 ms
111,824 KB
testcase_47 AC 244 ms
111,696 KB
testcase_48 AC 234 ms
111,824 KB
testcase_49 AC 250 ms
112,336 KB
testcase_50 AC 243 ms
112,472 KB
testcase_51 AC 222 ms
111,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python
#coding:utf-8
from collections import Counter
import itertools,random

digits=4
#mode='mastermind'
mode='hitandblow'

def hit_and_blow(a,b):
	hit=sum(a[i]==b[i] for i in range(digits))
	if mode=='mastermind':
		#mastermind allows duplication (slow)
		ca=Counter(a)
		cb=Counter(b)
		blow=sum(min(0 if k not in cb else cb[k],v) for k,v in ca.items())
	else:
		blow=len(a)+len(b)-len(set(iter(a+b)))
	return (hit,blow-hit)

def minimax(e):
	h={}
	for f in lst:
		x=hit_and_blow(e,f)
		if x not in h: h[x]=0
		h[x]+=1
	return (max(h.values()),e)

def genlist():
	if mode=='mastermind':
		return list(''.join(e) for e in itertools.product(iter('123456'),repeat=digits))
	else:
		return list(''.join(e) for e in itertools.permutations(iter('0123456789'),digits))

def checkio(data):
	global lst
	if len(data)==0:
		lst=genlist()
		if mode=='mastermind': return '1122'
		else: return '0123'
	last=data[-1].split()
	hit=int(last[1][0])
	blow=int(last[1][2])
	last=last[0]
	for i in range(len(lst)-1,-1,-1):
		if hit_and_blow(lst[i],last)!=(hit,blow): lst.pop(i)
	#return min(minimax(e) for e in lst)[1] # こちらの評価関数を使うとクエリ数を削減できるがTLE
	return random.choice(lst)

if __name__ == '__main__':
	import sys
	if sys.version_info[0]>=3: raw_input=input
	q=[]
	while True:
		s=checkio(q)
		print(' '.join(s))
		sys.stdout.flush()
		t=raw_input().strip()
		if t=='4 0':break
		q.append(s+' '+'H'.join(t.split()))
0