結果
問題 | No.1054 Union add query |
ユーザー | H3PO4 |
提出日時 | 2024-05-05 09:00:14 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 1,501 ms / 2,000 ms |
コード長 | 1,570 bytes |
コンパイル時間 | 345 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 48,256 KB |
最終ジャッジ日時 | 2024-05-05 09:00:26 |
合計ジャッジ時間 | 11,496 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
10,880 KB |
testcase_01 | AC | 25 ms
10,880 KB |
testcase_02 | AC | 26 ms
10,880 KB |
testcase_03 | AC | 1,282 ms
18,176 KB |
testcase_04 | AC | 1,501 ms
45,824 KB |
testcase_05 | AC | 1,203 ms
14,720 KB |
testcase_06 | AC | 1,119 ms
23,552 KB |
testcase_07 | AC | 1,027 ms
23,552 KB |
testcase_08 | AC | 1,035 ms
23,552 KB |
testcase_09 | AC | 1,288 ms
48,256 KB |
testcase_10 | AC | 936 ms
42,368 KB |
ソースコード
import sys input = sys.stdin.buffer.readline class UnionFind: __slots__ = ["n", "parent", "height", "size", "data"] def __init__(self, n): self.n = n self.parent = [i for i in range(n)] self.height = [1] * n self.size = [1] * n self.data = [0] * n def find(self, x): if self.parent[x] == x: return x else: return self.find(self.parent[x]) # self.parent[x] = self.find(self.parent[x]) # return self.parent[x] def unite(self, x, y): x = self.find(x) y = self.find(y) if x != y: if self.height[x] < self.height[y]: self.parent[x] = y self.size[y] += self.size[x] self.data[x] -= self.data[y] else: self.parent[y] = x self.size[x] += self.size[y] self.data[y] -= self.data[x] if self.height[x] == self.height[y]: self.height[x] += 1 def add(self, x, b): self.data[self.find(x)] += b def get(self, x): res = self.data[x] while x != self.parent[x]: x = self.parent[x] res += self.data[x] return res N, Q = map(int, input().split()) uf = UnionFind(N) for _ in range(Q): query = tuple(map(int, input().split())) if query[0] == 1: uf.unite(query[1] - 1, query[2] - 1) elif query[0] == 2: uf.add(query[1] - 1, query[2]) elif query[0] == 3: print(uf.get(query[1] - 1))