結果

問題 No.1420 国勢調査 (Easy)
ユーザー rlangevinrlangevin
提出日時 2023-05-07 12:47:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,545 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 81,820 KB
最終ジャッジ日時 2024-05-03 13:05:45
合計ジャッジ時間 8,732 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,748 KB
testcase_01 AC 35 ms
52,944 KB
testcase_02 AC 171 ms
77,776 KB
testcase_03 AC 166 ms
77,724 KB
testcase_04 AC 171 ms
77,500 KB
testcase_05 AC 171 ms
77,920 KB
testcase_06 AC 174 ms
77,732 KB
testcase_07 AC 158 ms
77,684 KB
testcase_08 AC 159 ms
77,836 KB
testcase_09 AC 158 ms
77,964 KB
testcase_10 AC 158 ms
77,544 KB
testcase_11 AC 164 ms
77,676 KB
testcase_12 AC 71 ms
79,184 KB
testcase_13 WA -
testcase_14 AC 74 ms
79,400 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 246 ms
81,240 KB
testcase_28 AC 248 ms
80,980 KB
testcase_29 AC 282 ms
81,312 KB
testcase_30 AC 247 ms
81,048 KB
testcase_31 AC 252 ms
80,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

class UnionFind(object):
    def __init__(self, n=1):
        self.par = [i for i in range(n)]
        self.rank = [0 for _ in range(n)]
        self.size = [1 for _ in range(n)]
        self.diff_weight = [0 for _ in range(n)]
        self.flag = 1

    def find(self, x):
        if self.par[x] == x:
            return x
        else:
            root = self.find(self.par[x])
            self.diff_weight[x] ^= self.diff_weight[self.par[x]]
            self.par[x] = root
            return self.par[x]

    def union(self, x, y, w):
        rx = self.find(x)
        ry = self.find(y)
        w ^= self.diff_weight[y]^self.diff_weight[x]
        if rx != ry:
            if self.rank[rx] < self.rank[ry]:
                rx, ry = ry, rx
            if self.rank[rx] == self.rank[ry]:
                self.rank[rx] += 1
            self.par[ry] = rx
            self.size[rx] += self.size[ry]
            self.diff_weight[ry] = w
        else:
            if w:
                self.flag = 0


    def is_same(self, x, y):
        return self.find(x) == self.find(y)

    def get_size(self, x):
        x = self.find(x)
        return self.size[x]
    
    def diff(self, x, y):
        return self.diff_weight[y]^self.diff_weight[x]

N, M = map(int, input().split())
U = UnionFind(N)
for i in range(M):
    A, B = map(int, input().split())
    A, B = A - 1, B - 1
    Y = int(input())    
    U.union(A, B, Y)
    
if U.flag:
    for i in range(N):
        print(U.diff_weight[i])
else:
    print(-1)
0