結果
問題 | No.1054 Union add query |
ユーザー | ntuda |
提出日時 | 2021-10-09 12:27:52 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,014 bytes |
コンパイル時間 | 282 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 115,104 KB |
最終ジャッジ日時 | 2024-09-13 01:21:39 |
合計ジャッジ時間 | 4,274 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
17,824 KB |
testcase_01 | AC | 30 ms
10,880 KB |
testcase_02 | AC | 30 ms
10,752 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
ソースコード
import sys sys.setrecursionlimit(500000) def find(x): if par[x] == x: return x else: # par[x] = find(par[x]) #経路圧縮 # return par[x] return find(par[x]) #経路圧縮なし def same(x,y): return find(x) == find(y) def unite(x,y): x = find(x) y = find(y) if x == y: return 0 if x < y: par[y] = x else: par[x] = y N,Q = map(int,input().split()) TAB = [list(map(int,input().split())) for _ in range(Q)] par = [i for i in range(N+1)] B = [0] * (N+1) for i,(t,a,b) in enumerate(TAB): if t == 1: pa = find(a) pb = find(b) if pa == pb: continue if pa < pb: B[pb] -= B[pa] else: B[pa] -= B[pb] unite(pa,pb) elif t==2: pa = find(a) B[pa] += b else: ans = 0 while 1: ans += B[a] c = par[a] if a == c: break a = c print(ans)