結果

問題 No.1420 国勢調査 (Easy)
ユーザー H3PO4H3PO4
提出日時 2022-05-12 09:29:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 440 ms / 2,000 ms
コード長 790 bytes
コンパイル時間 564 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 108,796 KB
最終ジャッジ日時 2024-07-20 01:49:44
合計ジャッジ時間 12,775 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,504 KB
testcase_01 AC 45 ms
53,632 KB
testcase_02 AC 277 ms
88,832 KB
testcase_03 AC 263 ms
88,320 KB
testcase_04 AC 268 ms
87,936 KB
testcase_05 AC 266 ms
88,576 KB
testcase_06 AC 278 ms
88,576 KB
testcase_07 AC 248 ms
87,552 KB
testcase_08 AC 259 ms
87,552 KB
testcase_09 AC 259 ms
87,792 KB
testcase_10 AC 258 ms
87,680 KB
testcase_11 AC 258 ms
87,168 KB
testcase_12 AC 186 ms
98,244 KB
testcase_13 AC 190 ms
98,380 KB
testcase_14 AC 166 ms
98,188 KB
testcase_15 AC 191 ms
98,192 KB
testcase_16 AC 193 ms
98,392 KB
testcase_17 AC 190 ms
98,364 KB
testcase_18 AC 206 ms
98,256 KB
testcase_19 AC 198 ms
98,532 KB
testcase_20 AC 187 ms
98,240 KB
testcase_21 AC 189 ms
98,304 KB
testcase_22 AC 401 ms
108,796 KB
testcase_23 AC 440 ms
108,324 KB
testcase_24 AC 377 ms
108,532 KB
testcase_25 AC 393 ms
108,528 KB
testcase_26 AC 379 ms
108,464 KB
testcase_27 AC 307 ms
106,752 KB
testcase_28 AC 303 ms
106,428 KB
testcase_29 AC 287 ms
106,492 KB
testcase_30 AC 301 ms
106,688 KB
testcase_31 AC 297 ms
106,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque


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()
            for x, y in G[v]:
                if x in nonvisited:
                    X[x] = X[v] ^ y
                    nonvisited.remove(x)
                    d.append(x)
                else:
                    if X[x] != X[v] ^ 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