結果

問題 No.1420 国勢調査 (Easy)
ユーザー H3PO4H3PO4
提出日時 2022-05-12 10:27:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 335 ms / 2,000 ms
コード長 860 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 108,544 KB
最終ジャッジ日時 2024-07-20 03:00:49
合計ジャッジ時間 9,546 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,376 KB
testcase_01 AC 41 ms
53,888 KB
testcase_02 AC 203 ms
87,552 KB
testcase_03 AC 198 ms
87,424 KB
testcase_04 AC 196 ms
86,784 KB
testcase_05 AC 193 ms
86,656 KB
testcase_06 AC 210 ms
87,552 KB
testcase_07 AC 182 ms
85,888 KB
testcase_08 AC 189 ms
85,376 KB
testcase_09 AC 175 ms
85,376 KB
testcase_10 AC 187 ms
86,656 KB
testcase_11 AC 178 ms
86,272 KB
testcase_12 AC 144 ms
97,920 KB
testcase_13 AC 163 ms
97,920 KB
testcase_14 AC 139 ms
97,920 KB
testcase_15 AC 165 ms
97,920 KB
testcase_16 AC 173 ms
98,176 KB
testcase_17 AC 168 ms
98,048 KB
testcase_18 AC 161 ms
97,920 KB
testcase_19 AC 159 ms
97,920 KB
testcase_20 AC 154 ms
98,048 KB
testcase_21 AC 154 ms
97,792 KB
testcase_22 AC 303 ms
108,288 KB
testcase_23 AC 326 ms
108,288 KB
testcase_24 AC 318 ms
108,160 KB
testcase_25 AC 335 ms
108,544 KB
testcase_26 AC 322 ms
108,288 KB
testcase_27 AC 210 ms
105,728 KB
testcase_28 AC 207 ms
106,240 KB
testcase_29 AC 197 ms
105,984 KB
testcase_30 AC 207 ms
105,856 KB
testcase_31 AC 208 ms
105,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque

input = sys.stdin.buffer.readline


def solve(G):
    X = [None] * N
    nonvisited = set(range(N))
    while nonvisited:
        v0 = nonvisited.pop()
        X[v0] = 0
        d = deque([v0])
        while d:
            v = d.pop()
            xv = X[v]
            for nv, y in G[v]:
                if nv in nonvisited:
                    X[nv] = xv ^ y
                    nonvisited.remove(nv)
                    d.append(nv)
                else:
                    if X[nv] != xv ^ y:
                        return None
    return X


N, M = map(int, input().split())

G = [[] for _ in range(N)]
for _ in range(M):
    a, b = (int(x) - 1 for x in input().split())
    y = int(input())
    G[a].append((b, y))
    G[b].append((a, y))

X = solve(G)
if X is None:
    print(-1)
else:
    print(*X, sep="\n")
0