結果

問題 No.1054 Union add query
ユーザー c-yanc-yan
提出日時 2020-05-16 22:40:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 826 ms / 2,000 ms
コード長 868 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 287,104 KB
最終ジャッジ日時 2024-09-22 21:28:51
合計ジャッジ時間 6,786 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,480 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 719 ms
94,216 KB
testcase_04 AC 563 ms
96,836 KB
testcase_05 AC 707 ms
94,720 KB
testcase_06 AC 732 ms
175,104 KB
testcase_07 AC 826 ms
287,104 KB
testcase_08 AC 823 ms
208,512 KB
testcase_09 AC 426 ms
100,608 KB
testcase_10 AC 290 ms
84,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import setrecursionlimit


def find(parent, amount, i):
    t = parent[i]
    if t < 0:
        return i, 0
    t, a = find(parent, amount, t)
    parent[i] = t
    amount[i] += a
    return t, amount[i]


def unite(parent, amount, i, j):
    i, _ = find(parent, amount, i)
    j, _ = find(parent, amount, j)
    if i == j:
        return
    parent[j] += parent[i]
    parent[i] = j
    amount[i] -= amount[j]


setrecursionlimit(10 ** 6)

N, Q = map(int, input().split())

parent = [-1] * (N + 1)
amount = [0] * (N + 1)

result = []
for _ in range(Q):
    T, A, B = map(int, input().split())

    if T == 1:
        unite(parent, amount, A, B)
    elif T == 2:
        j, _ = find(parent, amount, A)
        amount[j] += B
    elif T == 3:
        j, a = find(parent, amount, A)
        result.append(amount[j] + a)
print('\n'.join(str(v) for v in result))
0