結果

問題 No.1420 国勢調査 (Easy)
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-03-06 00:05:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 436 ms / 2,000 ms
コード長 1,294 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 82,156 KB
最終ジャッジ日時 2024-10-07 06:24:40
合計ジャッジ時間 9,989 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,072 KB
testcase_01 AC 42 ms
53,032 KB
testcase_02 AC 293 ms
79,056 KB
testcase_03 AC 296 ms
79,500 KB
testcase_04 AC 290 ms
78,852 KB
testcase_05 AC 276 ms
79,068 KB
testcase_06 AC 278 ms
78,452 KB
testcase_07 AC 214 ms
78,960 KB
testcase_08 AC 241 ms
78,952 KB
testcase_09 AC 225 ms
78,824 KB
testcase_10 AC 256 ms
78,836 KB
testcase_11 AC 198 ms
78,476 KB
testcase_12 AC 99 ms
79,188 KB
testcase_13 AC 140 ms
79,936 KB
testcase_14 AC 105 ms
79,548 KB
testcase_15 AC 143 ms
80,076 KB
testcase_16 AC 137 ms
80,096 KB
testcase_17 AC 137 ms
80,088 KB
testcase_18 AC 136 ms
79,864 KB
testcase_19 AC 137 ms
80,092 KB
testcase_20 AC 140 ms
80,140 KB
testcase_21 AC 138 ms
80,004 KB
testcase_22 AC 436 ms
82,156 KB
testcase_23 AC 420 ms
82,052 KB
testcase_24 AC 423 ms
81,924 KB
testcase_25 AC 429 ms
81,772 KB
testcase_26 AC 424 ms
81,392 KB
testcase_27 AC 214 ms
80,136 KB
testcase_28 AC 221 ms
80,640 KB
testcase_29 AC 159 ms
80,076 KB
testcase_30 AC 225 ms
80,284 KB
testcase_31 AC 213 ms
80,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class WeightedUnionFind:
    def __init__(self, n):
        self.n = n
        self.par = list(range(n))
        self.rank = [0] * n
        self.weight = [0] * n

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

    def unite(self, x, y, w):
        p, q = self.find(x), self.find(y)
        if self.rank[p] < self.rank[q]:
            self.par[p] = q
            self.weight[p] = w ^ self.weight[x] ^ self.weight[y]
        else:
            self.par[q] = p
            self.weight[q] = w ^ self.weight[y] ^ self.weight[x]
            if self.rank[p] == self.rank[q]:
                self.rank[p] += 1

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

    def diff(self, x, y):
        return self.weight[x] ^ self.weight[y]

f = True
n, m = map(int, input().split())
UF = WeightedUnionFind(n)
for _ in range(m):
    a, b = map(int, input().split())
    y = int(input())
    if UF.same(a - 1, b - 1):
        if UF.diff(a - 1, b - 1) != y:
            f = False
            break
    UF.unite(a - 1, b - 1, y)
if not f: exit(print(-1))
for i in range(n):
    print(UF.diff(i, UF.find(i)))
0