結果

問題 No.1420 国勢調査 (Easy)
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-02-13 20:18:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,398 ms / 2,000 ms
コード長 840 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 58,836 KB
最終ジャッジ日時 2024-06-29 05:46:52
合計ジャッジ時間 26,179 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 1,137 ms
48,104 KB
testcase_03 AC 1,124 ms
48,108 KB
testcase_04 AC 1,105 ms
48,104 KB
testcase_05 AC 1,106 ms
47,976 KB
testcase_06 AC 1,108 ms
48,092 KB
testcase_07 AC 878 ms
47,980 KB
testcase_08 AC 902 ms
47,848 KB
testcase_09 AC 918 ms
48,112 KB
testcase_10 AC 875 ms
48,060 KB
testcase_11 AC 907 ms
47,980 KB
testcase_12 AC 118 ms
20,220 KB
testcase_13 AC 275 ms
24,976 KB
testcase_14 AC 134 ms
20,620 KB
testcase_15 AC 278 ms
24,984 KB
testcase_16 AC 277 ms
24,852 KB
testcase_17 AC 273 ms
24,984 KB
testcase_18 AC 278 ms
24,976 KB
testcase_19 AC 277 ms
24,976 KB
testcase_20 AC 274 ms
24,720 KB
testcase_21 AC 280 ms
24,852 KB
testcase_22 AC 1,378 ms
58,824 KB
testcase_23 AC 1,371 ms
58,832 KB
testcase_24 AC 1,357 ms
58,836 KB
testcase_25 AC 1,358 ms
58,568 KB
testcase_26 AC 1,398 ms
58,700 KB
testcase_27 AC 480 ms
37,112 KB
testcase_28 AC 921 ms
54,908 KB
testcase_29 AC 279 ms
27,420 KB
testcase_30 AC 664 ms
40,696 KB
testcase_31 AC 641 ms
40,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
e = [[] for _ in range(N)]
from collections import defaultdict
d = defaultdict(lambda:-1)
for _ in range(M):
    a,b = map(int,input().split())
    a -= 1
    b -= 1
    y = int(input())
    if d[(a,b)] != -1:
        if d[(a,b)] != y:
            print(-1)
            exit()
    d[(a,b)] = y
    d[(b,a)] = y
    e[a].append(b)
    e[b].append(a)
    
X = [-1]*N
from collections import deque
v = deque()
for i in range(N):
    if X[i] != -1:
        continue
    X[i] = 0
    v.append(i)
    
    while v:
        x = v.popleft()
        
        for ix in e[x]:
            if X[ix] == -1:
                X[ix] = X[x]^d[(x,ix)]
                v.append(ix)
            if X[ix] != -1:
                if X[ix] != X[x]^d[(x,ix)]:
                    print(-1)
                    exit()
print(*X,sep='\n')
0