結果

問題 No.1420 国勢調査 (Easy)
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-03-06 10:30:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 403 ms / 2,000 ms
コード長 672 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 94,848 KB
最終ジャッジ日時 2024-10-08 05:03:28
合計ジャッジ時間 10,797 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,632 KB
testcase_01 AC 41 ms
53,248 KB
testcase_02 AC 273 ms
87,680 KB
testcase_03 AC 272 ms
87,680 KB
testcase_04 AC 267 ms
87,552 KB
testcase_05 AC 267 ms
87,680 KB
testcase_06 AC 266 ms
87,772 KB
testcase_07 AC 248 ms
87,424 KB
testcase_08 AC 249 ms
87,424 KB
testcase_09 AC 252 ms
87,552 KB
testcase_10 AC 246 ms
86,016 KB
testcase_11 AC 247 ms
86,016 KB
testcase_12 AC 133 ms
84,992 KB
testcase_13 AC 173 ms
85,020 KB
testcase_14 AC 131 ms
84,992 KB
testcase_15 AC 172 ms
84,864 KB
testcase_16 AC 181 ms
85,120 KB
testcase_17 AC 175 ms
84,864 KB
testcase_18 AC 179 ms
85,008 KB
testcase_19 AC 179 ms
85,132 KB
testcase_20 AC 177 ms
84,932 KB
testcase_21 AC 174 ms
85,056 KB
testcase_22 AC 403 ms
94,848 KB
testcase_23 AC 380 ms
94,708 KB
testcase_24 AC 390 ms
94,592 KB
testcase_25 AC 386 ms
94,336 KB
testcase_26 AC 395 ms
94,848 KB
testcase_27 AC 284 ms
93,824 KB
testcase_28 AC 285 ms
93,696 KB
testcase_29 AC 284 ms
93,824 KB
testcase_30 AC 288 ms
93,824 KB
testcase_31 AC 287 ms
93,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n,m = map(int,input().split())
e = [[] for i in range(n)]
for i in range(m):
    a,b = map(int,input().split())
    y = int(input())
    a -= 1
    b -= 1
    e[a].append((b,y))
    e[b].append((a,y))

ans = [0]*n
use = [0]*n

for i in range(n):
    if use[i]:
        continue
    q = deque([i])
    use[i] = 1
    while q:
        now = q.popleft()
        for nex,y in e[now]:
            if use[nex]:
                if ans[now]^ans[nex] != y:
                    print(-1)
                    exit()
                continue
            use[nex] = 1
            ans[nex] = y^ans[now]
            q.append(nex)
for i in ans:
    print(i)
0