結果

問題 No.1420 国勢調査 (Easy)
ユーザー roarisroaris
提出日時 2021-03-05 22:07:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 450 ms / 2,000 ms
コード長 858 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 127,120 KB
最終ジャッジ日時 2024-10-07 02:05:30
合計ジャッジ時間 12,729 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
53,376 KB
testcase_01 AC 56 ms
53,248 KB
testcase_02 AC 450 ms
119,408 KB
testcase_03 AC 351 ms
119,616 KB
testcase_04 AC 330 ms
119,608 KB
testcase_05 AC 319 ms
120,008 KB
testcase_06 AC 328 ms
119,536 KB
testcase_07 AC 289 ms
114,316 KB
testcase_08 AC 292 ms
113,904 KB
testcase_09 AC 292 ms
114,408 KB
testcase_10 AC 285 ms
113,880 KB
testcase_11 AC 289 ms
114,468 KB
testcase_12 AC 102 ms
83,328 KB
testcase_13 AC 170 ms
86,912 KB
testcase_14 AC 99 ms
82,944 KB
testcase_15 AC 168 ms
87,168 KB
testcase_16 AC 173 ms
87,424 KB
testcase_17 AC 170 ms
86,912 KB
testcase_18 AC 172 ms
87,296 KB
testcase_19 AC 171 ms
86,912 KB
testcase_20 AC 170 ms
86,656 KB
testcase_21 AC 166 ms
87,040 KB
testcase_22 AC 446 ms
126,676 KB
testcase_23 AC 427 ms
127,120 KB
testcase_24 AC 437 ms
126,844 KB
testcase_25 AC 431 ms
126,940 KB
testcase_26 AC 438 ms
127,076 KB
testcase_27 AC 311 ms
119,300 KB
testcase_28 AC 323 ms
119,788 KB
testcase_29 AC 315 ms
119,556 KB
testcase_30 AC 319 ms
119,576 KB
testcase_31 AC 316 ms
119,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

N, M = map(int, input().split())
G = [[] for _ in range(N)]
d = defaultdict(set)

for _ in range(M):
    A, B = map(int, input().split())
    Y = int(input())
    G[A-1].append((B-1, Y))
    G[B-1].append((A-1, Y))
    d[10**6*min(A, B)+max(A, B)].add(Y)

for k in d:
    if len(d[k])>=2:
        print(-1)
        exit()
        
ans = [-1]*N

for v in range(N):
    if ans[v]==-1:
        ans[v] = 0
        q = deque([v])
        
        while q:
            v = q.popleft()
            
            for nv, Y in G[v]:
                if ans[nv]==-1:
                    ans[nv] = ans[v]^Y
                    q.append(nv)
                else:
                    if ans[v]^ans[nv]!=Y:
                        print(-1)
                        exit()

for i in range(N):
    print(ans[i])
0