結果

問題 No.1420 国勢調査 (Easy)
ユーザー tktk_snsntktk_snsn
提出日時 2021-03-15 21:09:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 671 ms / 2,000 ms
コード長 651 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 48,640 KB
最終ジャッジ日時 2024-11-07 09:57:03
合計ジャッジ時間 15,178 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 468 ms
36,480 KB
testcase_03 AC 452 ms
36,480 KB
testcase_04 AC 449 ms
36,480 KB
testcase_05 AC 442 ms
36,480 KB
testcase_06 AC 447 ms
36,480 KB
testcase_07 AC 381 ms
36,224 KB
testcase_08 AC 363 ms
36,096 KB
testcase_09 AC 351 ms
36,224 KB
testcase_10 AC 384 ms
35,968 KB
testcase_11 AC 349 ms
36,096 KB
testcase_12 AC 100 ms
21,376 KB
testcase_13 AC 209 ms
24,192 KB
testcase_14 AC 99 ms
21,376 KB
testcase_15 AC 215 ms
24,320 KB
testcase_16 AC 207 ms
24,320 KB
testcase_17 AC 205 ms
24,320 KB
testcase_18 AC 206 ms
24,192 KB
testcase_19 AC 208 ms
24,320 KB
testcase_20 AC 207 ms
24,320 KB
testcase_21 AC 207 ms
24,320 KB
testcase_22 AC 667 ms
48,512 KB
testcase_23 AC 660 ms
48,256 KB
testcase_24 AC 657 ms
48,640 KB
testcase_25 AC 671 ms
48,512 KB
testcase_26 AC 650 ms
48,512 KB
testcase_27 AC 409 ms
43,264 KB
testcase_28 AC 411 ms
43,264 KB
testcase_29 AC 401 ms
43,392 KB
testcase_30 AC 400 ms
43,520 KB
testcase_31 AC 412 ms
43,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)

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

X = [-1] * N
for i in range(N):
    if X[i] != -1:
        continue
    X[i] = 0
    q = [i]
    while q:
        s = q.pop()
        for t, y in G[s]:
            if X[t] == -1:
                X[t] = y ^ X[s]
                q.append(t)
                continue
            if X[s] ^ X[t] != y:
                print(-1)
                exit()

print(*X, sep="\n")
0