結果

問題 No.1054 Union add query
ユーザー H3PO4H3PO4
提出日時 2024-05-05 09:04:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,434 ms / 2,000 ms
コード長 1,660 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 48,128 KB
最終ジャッジ日時 2024-05-05 09:04:53
合計ジャッジ時間 11,292 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 1,273 ms
18,048 KB
testcase_04 AC 1,434 ms
45,696 KB
testcase_05 AC 1,165 ms
14,592 KB
testcase_06 AC 1,115 ms
23,552 KB
testcase_07 AC 1,050 ms
23,424 KB
testcase_08 AC 1,065 ms
23,552 KB
testcase_09 AC 1,321 ms
48,128 KB
testcase_10 AC 971 ms
42,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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:
            new_parent = self.find(self.parent[x])
            if new_parent != self.parent[x]:
                self.data[x] += self.data[self.parent[x]]
            self.parent[x] = new_parent
            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))
0