結果
問題 | No.1054 Union add query |
ユーザー | tktk_snsn |
提出日時 | 2020-12-18 19:56:12 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 943 bytes |
コンパイル時間 | 202 ms |
コンパイル使用メモリ | 82,040 KB |
実行使用メモリ | 107,112 KB |
最終ジャッジ日時 | 2024-09-21 09:15:54 |
合計ジャッジ時間 | 4,279 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
59,684 KB |
testcase_01 | AC | 42 ms
53,264 KB |
testcase_02 | AC | 38 ms
52,544 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
ソースコード
import sys input = sys.stdin.buffer.readline N, Q = map(int, input().split()) tmp = [0] * N num = [0] * N root = [[i] for i in range(N)] def find(x): if isinstance(root[x], list): return x res = find(root[x]) root[x] = res return res def merge(x, y): x = find(x) y = find(y) if x == y: return if len(root[x]) > len(root[y]): x, y = y, x tx = tmp[x] if tx: for i in root[x]: num[i] += tx tmp[x] = 0 ty = tmp[y] if ty: for i in root[y]: num[i] += ty tmp[y] = 0 root[y].extend(root[x]) root[x] = y ans = [] for _ in range(Q): t, a, b = map(int, input().split()) if t == 1: merge(a-1, b-1) elif t == 2: leader = find(a-1) tmp[leader] += b else: leader = find(a-1) ans.append(num[a-1] + tmp[leader]) print(*ans, sep="\n")