結果

問題 No.1054 Union add query
ユーザー tamatotamato
提出日時 2020-05-15 22:06:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 329 ms / 2,000 ms
コード長 1,699 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 103,836 KB
最終ジャッジ日時 2024-09-19 10:39:11
合計ジャッジ時間 3,669 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 37 ms
52,736 KB
testcase_02 AC 40 ms
52,480 KB
testcase_03 AC 308 ms
94,976 KB
testcase_04 AC 329 ms
101,260 KB
testcase_05 AC 319 ms
94,820 KB
testcase_06 AC 216 ms
91,872 KB
testcase_07 AC 188 ms
91,996 KB
testcase_08 AC 208 ms
88,192 KB
testcase_09 AC 234 ms
103,836 KB
testcase_10 AC 119 ms
87,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.buffer.readline

    class UnionFind():
        def __init__(self, n):
            self.n = n
            self.root = [-1] * (n + 1)
            self.val = [0] * (n+1)
            self.rnk = [0] * (n + 1)

        def find_root(self, x):
            while self.root[x] >= 0:
                x = self.root[x]
            return x

        def unite(self, x, y):
            x = self.find_root(x)
            y = self.find_root(y)
            if x == y:
                return
            elif self.rnk[x] > self.rnk[y]:
                self.root[x] += self.root[y]
                self.root[y] = x
                self.val[y] -= self.val[x]
            else:
                self.root[y] += self.root[x]
                self.root[x] = y
                self.val[x] -= self.val[y]
                if self.rnk[x] == self.rnk[y]:
                    self.rnk[y] += 1

        def isSameGroup(self, x, y):
            return self.find_root(x) == self.find_root(y)

        def size(self, x):
            return -self.root[self.find_root(x)]

    N, Q = map(int, input().split())
    UF = UnionFind(N+1)
    ans = []
    ans_append = ans.append
    for _ in range(Q):
        t, a, b = map(int, input().split())
        if t == 1:
            UF.unite(a, b)
        elif t == 2:
            x = UF.find_root(a)
            UF.val[x] += b
        else:
            tmp = 0
            x = a
            while True:
                tmp += UF.val[x]
                x = UF.root[x]
                if x < 0:
                    break
            ans.append(tmp)
    print(*ans, sep="\n")


if __name__ == '__main__':
    main()
0