結果

問題 No.1420 国勢調査 (Easy)
ユーザー tamatotamato
提出日時 2021-03-05 22:00:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 254 ms / 2,000 ms
コード長 937 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 93,152 KB
最終ジャッジ日時 2024-10-07 01:52:35
合計ジャッジ時間 7,510 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,760 KB
testcase_01 AC 41 ms
54,272 KB
testcase_02 AC 172 ms
86,016 KB
testcase_03 AC 173 ms
85,760 KB
testcase_04 AC 168 ms
86,016 KB
testcase_05 AC 171 ms
85,632 KB
testcase_06 AC 170 ms
85,632 KB
testcase_07 AC 153 ms
85,608 KB
testcase_08 AC 144 ms
82,560 KB
testcase_09 AC 155 ms
85,248 KB
testcase_10 AC 154 ms
85,360 KB
testcase_11 AC 158 ms
85,652 KB
testcase_12 AC 89 ms
82,944 KB
testcase_13 AC 126 ms
83,712 KB
testcase_14 AC 83 ms
83,044 KB
testcase_15 AC 119 ms
83,712 KB
testcase_16 AC 122 ms
83,712 KB
testcase_17 AC 120 ms
83,584 KB
testcase_18 AC 123 ms
83,712 KB
testcase_19 AC 121 ms
83,584 KB
testcase_20 AC 121 ms
83,704 KB
testcase_21 AC 123 ms
83,328 KB
testcase_22 AC 254 ms
92,928 KB
testcase_23 AC 227 ms
93,056 KB
testcase_24 AC 250 ms
93,056 KB
testcase_25 AC 241 ms
93,152 KB
testcase_26 AC 246 ms
93,056 KB
testcase_27 AC 187 ms
92,032 KB
testcase_28 AC 184 ms
91,980 KB
testcase_29 AC 175 ms
92,288 KB
testcase_30 AC 171 ms
92,032 KB
testcase_31 AC 177 ms
92,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    from collections import deque
    input = sys.stdin.buffer.readline

    N, M = map(int, input().split())
    adj = [[] for _ in range(N+1)]
    for _ in range(M):
        a, b = map(int, input().split())
        y = int(input())
        adj[a].append((b, y))
        adj[b].append((a, y))

    seen = [-1] * (N+1)
    for v0 in range(1, N+1):
        if seen[v0] != -1:
            continue
        seen[v0] = 0
        que = deque()
        que.append(v0)
        while que:
            v = que.popleft()
            for u, y in adj[v]:
                if seen[u] == -1:
                    que.append(u)
                    seen[u] = seen[v] ^ y
                else:
                    if seen[v] ^ seen[u] != y:
                        print(-1)
                        exit()
    for v in range(1, N+1):
        print(seen[v])


if __name__ == '__main__':
    main()
0