結果

問題 No.1420 国勢調査 (Easy)
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-02-13 20:14:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 728 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 58,564 KB
最終ジャッジ日時 2024-06-29 05:45:57
合計ジャッジ時間 26,868 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,496 KB
testcase_01 AC 33 ms
10,752 KB
testcase_02 AC 1,125 ms
48,080 KB
testcase_03 AC 1,111 ms
47,844 KB
testcase_04 AC 1,099 ms
47,840 KB
testcase_05 AC 1,095 ms
47,844 KB
testcase_06 AC 1,106 ms
47,844 KB
testcase_07 AC 878 ms
48,096 KB
testcase_08 AC 923 ms
47,960 KB
testcase_09 AC 930 ms
47,972 KB
testcase_10 AC 865 ms
48,096 KB
testcase_11 AC 893 ms
47,848 KB
testcase_12 AC 113 ms
20,340 KB
testcase_13 WA -
testcase_14 AC 134 ms
20,612 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 479 ms
37,092 KB
testcase_28 AC 947 ms
55,148 KB
testcase_29 AC 287 ms
27,668 KB
testcase_30 AC 657 ms
40,688 KB
testcase_31 AC 626 ms
39,756 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
X[0] = 0
from collections import deque
v = deque()
v.append(0)
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