結果

問題 No.1054 Union add query
ユーザー H3PO4H3PO4
提出日時 2024-05-05 08:48:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,521 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 48,256 KB
最終ジャッジ日時 2024-05-05 08:48:15
合計ジャッジ時間 11,710 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,880 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 26 ms
10,880 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 1,132 ms
23,552 KB
testcase_07 AC 1,050 ms
23,552 KB
testcase_08 AC 1,037 ms
23,552 KB
testcase_09 AC 1,320 ms
48,256 KB
testcase_10 AC 897 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:
            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))
0