結果

問題 No.1054 Union add query
ユーザー c-yanc-yan
提出日時 2020-07-30 05:10:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,741 ms / 2,000 ms
コード長 493 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 49,792 KB
最終ジャッジ日時 2024-07-02 03:58:40
合計ジャッジ時間 12,326 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 1,741 ms
24,960 KB
testcase_04 AC 1,395 ms
33,792 KB
testcase_05 AC 1,663 ms
23,040 KB
testcase_06 AC 1,278 ms
32,512 KB
testcase_07 AC 1,168 ms
49,792 KB
testcase_08 AC 1,220 ms
37,504 KB
testcase_09 AC 1,231 ms
33,920 KB
testcase_10 AC 939 ms
18,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import setrecursionlimit,stdin
l=stdin.readline
def f(p,a,i):
	t=p[i]
	if t<0:
		return i,0
	t,u=f(p,a,t)
	p[i]=t
	a[i]+=u
	return t,a[i]
def u(p,a,i,j):
	i,_=f(p,a,i)
	j,_=f(p,a,j)
	if i==j:
		return
	p[j]+=p[i]
	p[i]=j
	a[i]-=a[j]
setrecursionlimit(10**6)
N,Q=map(int,l().split())
p=[-1]*(N+1)
a=[0]*(N+1)
r=[]
for _ in range(Q):
	T,A,B=map(int,l().split())
	if T==1:
		u(p,a,A,B)
	elif T==2:
		j,_=f(p,a,A)
		a[j]+=B
	elif T==3:
		j,k=f(p,a,A)
		r.append(a[j]+k)
print(*r,sep='\n')
0