結果

問題 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,413 ms / 2,000 ms
コード長 1,660 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 48,000 KB
最終ジャッジ日時 2024-11-27 04:29:47
合計ジャッジ時間 10,769 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 1,315 ms
17,920 KB
testcase_04 AC 1,413 ms
45,568 KB
testcase_05 AC 1,139 ms
14,592 KB
testcase_06 AC 1,106 ms
23,424 KB
testcase_07 AC 1,032 ms
23,424 KB
testcase_08 AC 1,040 ms
23,296 KB
testcase_09 AC 1,267 ms
48,000 KB
testcase_10 AC 903 ms
42,112 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