結果

問題 No.1420 国勢調査 (Easy)
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-03-05 22:19:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 273 ms / 2,000 ms
コード長 936 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 97,016 KB
最終ジャッジ日時 2024-10-07 02:41:53
合計ジャッジ時間 7,557 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,832 KB
testcase_01 AC 38 ms
53,676 KB
testcase_02 AC 157 ms
85,188 KB
testcase_03 AC 160 ms
86,796 KB
testcase_04 AC 169 ms
86,832 KB
testcase_05 AC 177 ms
86,780 KB
testcase_06 AC 160 ms
86,788 KB
testcase_07 AC 153 ms
84,544 KB
testcase_08 AC 155 ms
84,832 KB
testcase_09 AC 148 ms
84,164 KB
testcase_10 AC 145 ms
84,188 KB
testcase_11 AC 143 ms
84,132 KB
testcase_12 AC 90 ms
83,812 KB
testcase_13 AC 124 ms
84,964 KB
testcase_14 AC 86 ms
83,828 KB
testcase_15 AC 124 ms
85,052 KB
testcase_16 AC 133 ms
84,972 KB
testcase_17 AC 125 ms
84,916 KB
testcase_18 AC 123 ms
85,088 KB
testcase_19 AC 127 ms
85,096 KB
testcase_20 AC 123 ms
85,108 KB
testcase_21 AC 119 ms
85,052 KB
testcase_22 AC 256 ms
97,016 KB
testcase_23 AC 240 ms
96,776 KB
testcase_24 AC 273 ms
97,004 KB
testcase_25 AC 263 ms
96,708 KB
testcase_26 AC 261 ms
96,828 KB
testcase_27 AC 192 ms
91,616 KB
testcase_28 AC 192 ms
91,128 KB
testcase_29 AC 175 ms
91,128 KB
testcase_30 AC 171 ms
91,524 KB
testcase_31 AC 171 ms
91,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

桁ごとに求められる
1箇所決め打てば、後は連鎖的に決まる
桁ごとにdfsして、矛盾なければおk

"""

import sys
from sys import stdin
from collections import deque  

N,M = map(int,stdin.readline().split())

lis = [ [] for i in range(N) ]

for i in range(M):

    A,B = map(int,stdin.readline().split())
    A -= 1
    B -= 1

    Y = int(stdin.readline())

    lis[A].append((B,Y))
    lis[B].append((A,Y))

ans = [0] * N
able = [True] * N

for st in range(N):

    if able[st]:

        q = deque([st])
        able[st] = False

        while q:
            v = q.popleft()

            for nex,Y in lis[v]:
                if able[nex]:
                    able[nex] = False
                    ans[nex] = (Y ^ ans[v])
                    q.append(nex)
                elif ans[nex] != (Y ^ ans[v]):
                    print (-1)
                    sys.exit()

print ("\n".join(map(str,ans)))
0