結果

問題 No.1420 国勢調査 (Easy)
ユーザー nephrologistnephrologist
提出日時 2021-03-05 23:52:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 601 ms / 2,000 ms
コード長 1,166 bytes
コンパイル時間 1,207 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 124,092 KB
最終ジャッジ日時 2024-10-07 06:03:54
合計ジャッジ時間 13,950 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,316 KB
testcase_01 AC 42 ms
55,268 KB
testcase_02 AC 384 ms
91,668 KB
testcase_03 AC 375 ms
91,248 KB
testcase_04 AC 365 ms
91,264 KB
testcase_05 AC 382 ms
91,212 KB
testcase_06 AC 379 ms
91,684 KB
testcase_07 AC 339 ms
91,524 KB
testcase_08 AC 338 ms
91,272 KB
testcase_09 AC 342 ms
91,388 KB
testcase_10 AC 360 ms
91,028 KB
testcase_11 AC 330 ms
91,200 KB
testcase_12 AC 122 ms
81,916 KB
testcase_13 AC 195 ms
89,064 KB
testcase_14 AC 136 ms
85,336 KB
testcase_15 AC 204 ms
90,104 KB
testcase_16 AC 210 ms
90,056 KB
testcase_17 AC 207 ms
89,824 KB
testcase_18 AC 204 ms
89,840 KB
testcase_19 AC 195 ms
89,200 KB
testcase_20 AC 201 ms
89,816 KB
testcase_21 AC 199 ms
89,172 KB
testcase_22 AC 597 ms
123,928 KB
testcase_23 AC 576 ms
124,060 KB
testcase_24 AC 556 ms
123,628 KB
testcase_25 AC 576 ms
124,048 KB
testcase_26 AC 601 ms
124,092 KB
testcase_27 AC 268 ms
105,004 KB
testcase_28 AC 412 ms
121,728 KB
testcase_29 AC 186 ms
92,496 KB
testcase_30 AC 320 ms
111,692 KB
testcase_31 AC 318 ms
110,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

n, m = map(int, input().split())
graph = [[] for _ in range(n)]
memo = defaultdict(lambda: defaultdict(lambda: -1))
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
    if memo[a][b] >= 0:
        if memo[a][b] == y:
            continue
        else:
            print(-1)
            exit()
    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)
                        exit()
                used[u] = 1
                ans[u] = temp ^ ans[v]
                stack.append(u)
for a in ans:
    print(a)
0