結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,548 KB
testcase_01 AC 36 ms
52,352 KB
testcase_02 AC 450 ms
86,644 KB
testcase_03 AC 474 ms
86,692 KB
testcase_04 AC 429 ms
87,088 KB
testcase_05 AC 450 ms
87,036 KB
testcase_06 AC 448 ms
86,784 KB
testcase_07 AC 248 ms
86,732 KB
testcase_08 AC 211 ms
86,200 KB
testcase_09 AC 172 ms
86,628 KB
testcase_10 AC 172 ms
86,272 KB
testcase_11 AC 169 ms
86,144 KB
testcase_12 AC 127 ms
84,964 KB
testcase_13 AC 299 ms
96,696 KB
testcase_14 AC 90 ms
83,736 KB
testcase_15 AC 314 ms
96,476 KB
testcase_16 AC 313 ms
96,164 KB
testcase_17 AC 311 ms
96,360 KB
testcase_18 AC 321 ms
96,804 KB
testcase_19 AC 305 ms
96,516 KB
testcase_20 AC 305 ms
95,848 KB
testcase_21 AC 313 ms
96,280 KB
testcase_22 AC 1,483 ms
103,804 KB
testcase_23 AC 1,593 ms
104,084 KB
testcase_24 AC 1,477 ms
104,992 KB
testcase_25 AC 1,470 ms
105,916 KB
testcase_26 AC 1,611 ms
104,464 KB
testcase_27 AC 178 ms
91,112 KB
testcase_28 AC 187 ms
90,796 KB
testcase_29 AC 180 ms
91,176 KB
testcase_30 AC 181 ms
91,196 KB
testcase_31 AC 175 ms
91,048 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))
pow2 = [1 << i for i in range(30)]
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
                    if bi[npos]:
                        X[npos] ^= pow2[k]
                    stack.append(npos)
                elif bi[npos] != bi[pos] ^ x:
                    print(-1)
                    exit()
print(*X)
0