結果

問題 No.1420 国勢調査 (Easy)
ユーザー 👑 rin204rin204
提出日時 2022-02-24 22:08:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,571 ms / 2,000 ms
コード長 889 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 105,396 KB
最終ジャッジ日時 2024-07-02 14:06:37
合計ジャッジ時間 17,385 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,480 KB
testcase_01 AC 35 ms
52,224 KB
testcase_02 AC 435 ms
86,464 KB
testcase_03 AC 436 ms
86,556 KB
testcase_04 AC 368 ms
86,716 KB
testcase_05 AC 420 ms
86,804 KB
testcase_06 AC 408 ms
86,868 KB
testcase_07 AC 236 ms
86,528 KB
testcase_08 AC 195 ms
84,928 KB
testcase_09 AC 162 ms
86,204 KB
testcase_10 AC 165 ms
86,140 KB
testcase_11 AC 155 ms
86,216 KB
testcase_12 AC 122 ms
84,992 KB
testcase_13 AC 289 ms
96,092 KB
testcase_14 AC 89 ms
83,328 KB
testcase_15 AC 295 ms
96,016 KB
testcase_16 AC 300 ms
96,660 KB
testcase_17 AC 296 ms
95,928 KB
testcase_18 AC 295 ms
95,924 KB
testcase_19 AC 305 ms
96,084 KB
testcase_20 AC 297 ms
97,112 KB
testcase_21 AC 310 ms
95,956 KB
testcase_22 AC 1,425 ms
104,064 KB
testcase_23 AC 1,479 ms
103,936 KB
testcase_24 AC 1,565 ms
105,160 KB
testcase_25 AC 1,516 ms
104,444 KB
testcase_26 AC 1,571 ms
105,396 KB
testcase_27 AC 183 ms
91,268 KB
testcase_28 AC 186 ms
91,264 KB
testcase_29 AC 179 ms
91,264 KB
testcase_30 AC 179 ms
91,652 KB
testcase_31 AC 178 ms
91,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

n, m = map(int, input().split())

edges = [[] for _ in range(n)]
for _ in range(m):
    a, b = map(int, input().split())
    a -= 1
    b -= 1
    y = int(input())
    edges[a].append((b, y))
    edges[b].append((a, y))
    
X = [0] * n
for k in range(30):
    bi = [-1] * n
    for i in range(n):
        if bi[i] != -1:
            continue
        bi[i] = 0
        stack = [i]
        while stack:
            pos = stack.pop()
            for npos, y in edges[pos]:
                if y >> k & 1:
                    x = 1
                else:
                    x = 0
                if bi[npos] == -1:
                    bi[npos] = bi[pos] ^ x
                    X[npos] ^= bi[npos] << k
                    stack.append(npos)
                elif bi[npos] != bi[pos] ^ x:
                    print(-1)
                    exit()
print(*X)
0