結果

問題 No.1420 国勢調査 (Easy)
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-03-06 10:32:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 395 ms / 2,000 ms
コード長 638 bytes
コンパイル時間 421 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 94,540 KB
最終ジャッジ日時 2024-10-08 05:05:52
合計ジャッジ時間 10,610 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,376 KB
testcase_01 AC 48 ms
53,248 KB
testcase_02 AC 279 ms
87,296 KB
testcase_03 AC 258 ms
87,808 KB
testcase_04 AC 253 ms
87,808 KB
testcase_05 AC 252 ms
87,680 KB
testcase_06 AC 261 ms
87,296 KB
testcase_07 AC 243 ms
87,296 KB
testcase_08 AC 247 ms
87,040 KB
testcase_09 AC 240 ms
87,168 KB
testcase_10 AC 233 ms
85,888 KB
testcase_11 AC 232 ms
86,140 KB
testcase_12 AC 126 ms
84,096 KB
testcase_13 AC 174 ms
84,852 KB
testcase_14 AC 124 ms
84,096 KB
testcase_15 AC 171 ms
84,876 KB
testcase_16 AC 178 ms
85,092 KB
testcase_17 AC 176 ms
84,984 KB
testcase_18 AC 174 ms
84,992 KB
testcase_19 AC 179 ms
84,732 KB
testcase_20 AC 174 ms
84,600 KB
testcase_21 AC 172 ms
84,704 KB
testcase_22 AC 395 ms
94,408 KB
testcase_23 AC 368 ms
94,336 KB
testcase_24 AC 380 ms
94,336 KB
testcase_25 AC 375 ms
94,208 KB
testcase_26 AC 389 ms
94,540 KB
testcase_27 AC 283 ms
93,192 KB
testcase_28 AC 290 ms
92,800 KB
testcase_29 AC 286 ms
92,800 KB
testcase_30 AC 282 ms
93,056 KB
testcase_31 AC 281 ms
93,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n,m = map(int,input().split())
e = [[] for i in range(n+1)]
for i in range(m):
    a,b = map(int,input().split())
    y = int(input())
    e[a].append((b,y))
    e[b].append((a,y))

ans = [-1]*(n+1)

for i in range(1,n+1):
    if ans[i] >= 0:
        continue
    q = deque([i])
    ans[i] = 0
    while q:
        now = q.popleft()
        for nex,y in e[now]:
            if ans[nex] >= 0:
                if ans[now]^ans[nex] != y:
                    print(-1)
                    exit()
                continue
            ans[nex] = y^ans[now]
            q.append(nex)
for i in ans[1:]:
    print(i)
0