結果

問題 No.1421 国勢調査 (Hard)
ユーザー 👑 potato167potato167
提出日時 2022-02-17 01:58:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 579 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 77,016 KB
最終ジャッジ日時 2024-06-29 07:24:56
合計ジャッジ時間 4,582 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,556 KB
testcase_01 AC 42 ms
51,840 KB
testcase_02 AC 43 ms
52,480 KB
testcase_03 AC 44 ms
52,608 KB
testcase_04 AC 43 ms
52,608 KB
testcase_05 AC 41 ms
52,992 KB
testcase_06 AC 41 ms
52,864 KB
testcase_07 AC 41 ms
52,352 KB
testcase_08 AC 41 ms
52,864 KB
testcase_09 AC 40 ms
52,864 KB
testcase_10 AC 40 ms
52,608 KB
testcase_11 AC 42 ms
53,120 KB
testcase_12 AC 40 ms
52,736 KB
testcase_13 AC 41 ms
52,704 KB
testcase_14 AC 40 ms
52,352 KB
testcase_15 AC 40 ms
52,224 KB
testcase_16 AC 40 ms
52,264 KB
testcase_17 AC 41 ms
52,096 KB
testcase_18 AC 40 ms
52,480 KB
testcase_19 AC 41 ms
51,968 KB
testcase_20 AC 40 ms
51,968 KB
testcase_21 AC 40 ms
52,608 KB
testcase_22 AC 114 ms
76,288 KB
testcase_23 AC 113 ms
76,416 KB
testcase_24 AC 114 ms
76,852 KB
testcase_25 AC 111 ms
76,668 KB
testcase_26 AC 111 ms
76,672 KB
testcase_27 AC 119 ms
76,288 KB
testcase_28 AC 135 ms
77,016 KB
testcase_29 AC 138 ms
76,500 KB
testcase_30 AC 136 ms
76,800 KB
testcase_31 AC 140 ms
76,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
table=[(0,0)]*0
J=0
for i in range(M):
	A=int(input())
	D=0
	tmp=list(map(int,input().split()))
	for j in range(A):
		D+=(1<<(tmp[j]-1))
	Y=int(input())
	for j in range(len(table)):
		if (D^table[j][0])<D:
			D^=table[j][0]
			Y^=table[j][1]
	if D!=0:
		table.append((D,Y))
	elif Y!=0:
		J=1
if J==1:
	print(-1)
	exit()
ans=[0]*N
table.sort()
for i in range(len(table)):
	tmp=0
	ind=0
	for j in range(N):
		if (table[i][0]&(1<<j))!=0:
			ind=j
			tmp^=ans[j]
	ans[ind]=(tmp^table[i][1])
	#print(ind,tmp,table[i],ans)
for i in range(N):
	print(ans[i])
0