結果
問題 | No.1054 Union add query |
ユーザー | H20 |
提出日時 | 2021-10-06 10:36:21 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 484 ms / 2,000 ms |
コード長 | 1,834 bytes |
コンパイル時間 | 194 ms |
コンパイル使用メモリ | 82,040 KB |
実行使用メモリ | 91,136 KB |
最終ジャッジ日時 | 2024-07-23 02:43:58 |
合計ジャッジ時間 | 4,071 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
54,272 KB |
testcase_01 | AC | 47 ms
54,272 KB |
testcase_02 | AC | 43 ms
53,888 KB |
testcase_03 | AC | 484 ms
82,476 KB |
testcase_04 | AC | 412 ms
91,136 KB |
testcase_05 | AC | 423 ms
80,300 KB |
testcase_06 | AC | 270 ms
81,408 KB |
testcase_07 | AC | 221 ms
81,348 KB |
testcase_08 | AC | 266 ms
81,280 KB |
testcase_09 | AC | 311 ms
90,340 KB |
testcase_10 | AC | 161 ms
87,552 KB |
ソースコード
import sys input = sys.stdin.readline from collections import defaultdict class UnionFind(): def __init__(self, n): self.n = n self.parents = [-1] * n def find(self, x): if self.parents[x] < 0: return x else: self.parents[x] = self.find(self.parents[x]) if P[x]!=self.parents[x]: L[x]=L[P[x]]+L[x] P[x]=self.parents[x] return self.parents[x] def union(self, x, y): x = self.find(x) y = self.find(y) if x == y: return if self.parents[x] > self.parents[y]: x, y = y, x self.parents[x] += self.parents[y] self.parents[y] = x P[y]=x L[y]=L[x]-L[y] def size(self, x): return -self.parents[self.find(x)] def same(self, x, y): return self.find(x) == self.find(y) def members(self, x): root = self.find(x) return [i for i in range(self.n) if self.find(i) == root] def roots(self): return [i for i, x in enumerate(self.parents) if x < 0] def group_count(self): return len(self.roots()) def all_group_members(self): group_members = defaultdict(list) for member in range(self.n): group_members[self.find(member)].append(member) return group_members def __str__(self): return '\n'.join(f'{r}: {m}' for r, m in self.all_group_members().items()) N,Q = map(int,input().split()) uf = UnionFind(N+1) L = [0]*(N+1) P = [-1]*(N+1) for _ in range(Q): t,a,b = map(int,input().split()) if t==1: uf.union(a,b) if t==2: p = uf.find(a) L[p]+=b if t==3: p = uf.find(a) if p==a: print(L[a]) else: print(L[p]-L[a])