結果

問題 No.1054 Union add query
ユーザー c-yanc-yan
提出日時 2020-07-31 14:54:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,417 ms / 2,000 ms
コード長 485 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 49,792 KB
最終ジャッジ日時 2024-07-06 09:46:24
合計ジャッジ時間 11,295 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 26 ms
10,880 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 1,417 ms
24,704 KB
testcase_04 AC 1,165 ms
33,884 KB
testcase_05 AC 1,358 ms
23,168 KB
testcase_06 AC 1,057 ms
32,640 KB
testcase_07 AC 988 ms
49,792 KB
testcase_08 AC 1,042 ms
37,376 KB
testcase_09 AC 1,066 ms
34,000 KB
testcase_10 AC 787 ms
18,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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