結果

問題 No.1054 Union add query
ユーザー c-yanc-yan
提出日時 2020-07-30 05:03:28
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 480 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 261,316 KB
最終ジャッジ日時 2024-07-02 01:31:26
合計ジャッジ時間 7,131 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,736 KB
testcase_01 AC 39 ms
52,480 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 721 ms
97,456 KB
testcase_04 AC 586 ms
101,032 KB
testcase_05 AC 705 ms
98,128 KB
testcase_06 AC 759 ms
177,732 KB
testcase_07 RE -
testcase_08 AC 824 ms
209,780 KB
testcase_09 AC 446 ms
106,012 KB
testcase_10 AC 292 ms
83,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import setrecursionlimit
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(100000)
N,Q=map(int,input().split())
p=[-1]*(N+1)
a=[0]*(N+1)
r=[]
for _ in range(Q):
	T,A,B=map(int,input().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