結果

問題 No.1420 国勢調査 (Easy)
ユーザー ayaoniayaoni
提出日時 2021-03-05 22:45:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 265 ms / 2,000 ms
コード長 1,044 bytes
コンパイル時間 464 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 98,376 KB
最終ジャッジ日時 2024-10-07 03:39:19
合計ジャッジ時間 7,594 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,592 KB
testcase_01 AC 39 ms
55,324 KB
testcase_02 AC 172 ms
87,192 KB
testcase_03 AC 173 ms
86,444 KB
testcase_04 AC 168 ms
86,464 KB
testcase_05 AC 171 ms
86,480 KB
testcase_06 AC 172 ms
86,524 KB
testcase_07 AC 163 ms
86,084 KB
testcase_08 AC 153 ms
84,784 KB
testcase_09 AC 164 ms
86,396 KB
testcase_10 AC 160 ms
86,036 KB
testcase_11 AC 154 ms
86,104 KB
testcase_12 AC 90 ms
82,628 KB
testcase_13 AC 135 ms
87,160 KB
testcase_14 AC 85 ms
82,664 KB
testcase_15 AC 128 ms
87,316 KB
testcase_16 AC 135 ms
87,276 KB
testcase_17 AC 130 ms
87,308 KB
testcase_18 AC 131 ms
87,056 KB
testcase_19 AC 132 ms
87,340 KB
testcase_20 AC 125 ms
87,332 KB
testcase_21 AC 127 ms
87,072 KB
testcase_22 AC 265 ms
98,040 KB
testcase_23 AC 243 ms
97,908 KB
testcase_24 AC 240 ms
97,836 KB
testcase_25 AC 247 ms
97,844 KB
testcase_26 AC 250 ms
98,376 KB
testcase_27 AC 174 ms
92,608 KB
testcase_28 AC 170 ms
92,132 KB
testcase_29 AC 168 ms
92,364 KB
testcase_30 AC 168 ms
92,484 KB
testcase_31 AC 174 ms
92,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque
sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


N,M = MI()
Graph = [[] for _ in range(N+1)]
for _ in range(M):
    A,B = MI()
    Y = I()
    Graph[A].append((B,Y))
    Graph[B].append((A,Y))

ANS = [-1]*(N+1)
for i in range(1,N+1):
    if ANS[i] != -1:
        continue

    ANS[i] = 0
    deq = deque([i])
    while deq:
        j = deq.pop()
        for k,y in Graph[j]:
            if ANS[k] == -1:
                ANS[k] = ANS[j]^y
                deq.appendleft(k)
            else:
                if ANS[k] != ANS[j]^y:
                    print(-1)
                    exit()

print(*ANS[1:],sep='\n')
0