結果

問題 No.1420 国勢調査 (Easy)
ユーザー nephrologistnephrologist
提出日時 2021-03-05 23:47:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,030 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 114,072 KB
最終ジャッジ日時 2024-10-07 05:56:29
合計ジャッジ時間 14,102 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,724 KB
testcase_01 WA -
testcase_02 AC 343 ms
90,008 KB
testcase_03 AC 342 ms
90,452 KB
testcase_04 AC 343 ms
90,124 KB
testcase_05 AC 345 ms
90,000 KB
testcase_06 AC 341 ms
90,344 KB
testcase_07 AC 330 ms
89,908 KB
testcase_08 AC 336 ms
90,060 KB
testcase_09 AC 336 ms
90,060 KB
testcase_10 AC 339 ms
90,200 KB
testcase_11 AC 330 ms
90,408 KB
testcase_12 WA -
testcase_13 AC 183 ms
87,960 KB
testcase_14 WA -
testcase_15 AC 190 ms
88,296 KB
testcase_16 AC 197 ms
88,364 KB
testcase_17 AC 192 ms
87,688 KB
testcase_18 AC 189 ms
88,308 KB
testcase_19 AC 188 ms
88,016 KB
testcase_20 AC 190 ms
88,076 KB
testcase_21 AC 188 ms
88,136 KB
testcase_22 AC 533 ms
113,592 KB
testcase_23 AC 532 ms
113,516 KB
testcase_24 AC 508 ms
112,752 KB
testcase_25 AC 533 ms
113,512 KB
testcase_26 AC 534 ms
113,492 KB
testcase_27 AC 554 ms
113,748 KB
testcase_28 AC 557 ms
113,536 KB
testcase_29 AC 597 ms
114,072 KB
testcase_30 AC 562 ms
113,844 KB
testcase_31 AC 568 ms
113,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

n, m = map(int, input().split())
graph = [[] for _ in range(n)]
memo = defaultdict(lambda: defaultdict(int))
for _ in range(m):
    a, b = map(int, input().split())
    y = int(input())
    a, b = a - 1, b - 1
    graph[a].append(b)
    graph[b].append(a)
    if a > b:
        b, a = a, b
    memo[a][b] = y


used = [0] * n
ans = [-1] * n
for i in range(n):
    if not used[i]:
        stack = [i]
        used[i] = 1
        ans[i] = 0
        while stack:
            v = stack.pop()
            now = ans[v]
            for u in graph[v]:
                if u < v:
                    temp = memo[u][v]
                else:
                    temp = memo[v][u]
                if used[u]:
                    if ans[u] ^ ans[v] == temp:
                        continue
                    else:
                        print(-1)
                        break
                used[u] = 1
                ans[u] = temp ^ ans[v]
                stack.append(u)
for a in ans:
    print(a)
0