結果

問題 No.1054 Union add query
ユーザー rlangevinrlangevin
提出日時 2024-04-27 14:00:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 846 ms / 2,000 ms
コード長 1,574 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 158,720 KB
最終ジャッジ日時 2024-04-27 14:00:30
合計ジャッジ時間 5,516 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,992 KB
testcase_01 AC 39 ms
52,608 KB
testcase_02 AC 33 ms
52,096 KB
testcase_03 AC 567 ms
103,412 KB
testcase_04 AC 846 ms
158,720 KB
testcase_05 AC 466 ms
90,312 KB
testcase_06 AC 293 ms
116,440 KB
testcase_07 AC 263 ms
116,312 KB
testcase_08 AC 299 ms
116,040 KB
testcase_09 AC 356 ms
139,384 KB
testcase_10 AC 213 ms
137,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

class UnionFind():
    def __init__(self, n=1):
        self.par = [i for i in range(n)]
        self.rank = [0 for _ in range(n)]
        self.size = [1 for _ in range(n)]
        self.p = [0 for _ in range(n)]
        self.ans = [0 for _ in range(n)]
        self.mem = [[i] for i in range(n)]

    def find(self, x):
        if self.par[x] == x:
            return x
        else:
            self.par[x] = self.find(self.par[x])
            return self.par[x]

    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x != y:
            if self.rank[x] < self.rank[y]:
                x, y = y, x
            if self.rank[x] == self.rank[y]:
                self.rank[x] += 1
            self.par[y] = x
            while self.mem[y]:
                v = self.mem[y].pop()
                self.ans[v] += self.p[y] - self.p[x] 
                self.mem[x].append(v)
            self.p[y] = []
            self.size[x] += self.size[y]

    def is_same(self, x, y):
        return self.find(x) == self.find(y)

    def get_size(self, x):
        x = self.find(x)
        return self.size[x]
    
    def add(self, x, v):
        x = self.find(x)
        self.p[x] += v
        return
    
    def get(self, x):
        return self.p[self.find(x)] + self.ans[x]
        

N, Q = map(int, input().split())
U = UnionFind(N)
for _ in range(Q):
    t, a, b = map(int, input().split())
    a -= 1
    if t == 1:
        U.union(a, b - 1)
    elif t == 2:
        U.add(a, b)
    else:
        print(U.get(a))
0