結果
問題 | No.1054 Union add query |
ユーザー | c-yan |
提出日時 | 2020-05-16 22:43:06 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 1,649 ms / 2,000 ms |
コード長 | 921 bytes |
コンパイル時間 | 201 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 49,792 KB |
最終ジャッジ日時 | 2024-09-22 21:32:54 |
合計ジャッジ時間 | 11,698 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
10,624 KB |
testcase_01 | AC | 30 ms
10,624 KB |
testcase_02 | AC | 30 ms
10,624 KB |
testcase_03 | AC | 1,649 ms
30,720 KB |
testcase_04 | AC | 1,287 ms
39,308 KB |
testcase_05 | AC | 1,538 ms
29,184 KB |
testcase_06 | AC | 1,218 ms
32,768 KB |
testcase_07 | AC | 1,117 ms
49,792 KB |
testcase_08 | AC | 1,201 ms
37,376 KB |
testcase_09 | AC | 1,169 ms
42,240 KB |
testcase_10 | AC | 936 ms
18,304 KB |
ソースコード
from sys import setrecursionlimit from sys import stdin 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) readline = stdin.readline N, Q = map(int, readline().split()) parent = [-1] * (N + 1) amount = [0] * (N + 1) result = [] for _ in range(Q): T, A, B = map(int, readline().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))