結果

問題 No.1420 国勢調査 (Easy)
ユーザー 👑 rin204rin204
提出日時 2022-02-24 22:06:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,808 ms / 2,000 ms
コード長 850 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 107,232 KB
最終ジャッジ日時 2024-07-02 13:58:32
合計ジャッジ時間 21,851 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,968 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 579 ms
88,192 KB
testcase_03 AC 557 ms
87,680 KB
testcase_04 AC 481 ms
87,936 KB
testcase_05 AC 569 ms
88,192 KB
testcase_06 AC 560 ms
88,192 KB
testcase_07 AC 345 ms
87,680 KB
testcase_08 AC 309 ms
87,936 KB
testcase_09 AC 264 ms
87,296 KB
testcase_10 AC 262 ms
86,144 KB
testcase_11 AC 259 ms
86,144 KB
testcase_12 AC 180 ms
85,928 KB
testcase_13 AC 354 ms
96,672 KB
testcase_14 AC 143 ms
84,864 KB
testcase_15 AC 364 ms
96,704 KB
testcase_16 AC 357 ms
97,100 KB
testcase_17 AC 371 ms
97,512 KB
testcase_18 AC 364 ms
96,844 KB
testcase_19 AC 370 ms
97,228 KB
testcase_20 AC 363 ms
97,672 KB
testcase_21 AC 370 ms
96,868 KB
testcase_22 AC 1,587 ms
105,284 KB
testcase_23 AC 1,642 ms
104,952 KB
testcase_24 AC 1,674 ms
105,256 KB
testcase_25 AC 1,611 ms
106,188 KB
testcase_26 AC 1,808 ms
107,232 KB
testcase_27 AC 299 ms
93,952 KB
testcase_28 AC 291 ms
92,544 KB
testcase_29 AC 288 ms
92,672 KB
testcase_30 AC 291 ms
93,824 KB
testcase_31 AC 298 ms
94,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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