結果

問題 No.2325 Skill Tree
ユーザー 👑 p-adicp-adic
提出日時 2023-05-29 01:22:00
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 706 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 179,140 KB
最終ジャッジ日時 2024-06-08 14:20:01
合計ジャッジ時間 21,400 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
57,728 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 38 ms
51,712 KB
testcase_04 AC 38 ms
52,352 KB
testcase_05 AC 38 ms
52,224 KB
testcase_06 AC 38 ms
51,968 KB
testcase_07 AC 316 ms
102,464 KB
testcase_08 AC 329 ms
102,656 KB
testcase_09 AC 382 ms
109,184 KB
testcase_10 AC 484 ms
113,536 KB
testcase_11 AC 462 ms
115,624 KB
testcase_12 AC 775 ms
149,928 KB
testcase_13 AC 653 ms
150,016 KB
testcase_14 AC 697 ms
150,072 KB
testcase_15 AC 685 ms
149,544 KB
testcase_16 AC 660 ms
149,524 KB
testcase_17 AC 566 ms
124,416 KB
testcase_18 AC 555 ms
124,288 KB
testcase_19 AC 569 ms
124,032 KB
testcase_20 AC 560 ms
123,904 KB
testcase_21 AC 585 ms
124,416 KB
testcase_22 AC 765 ms
178,840 KB
testcase_23 AC 745 ms
178,956 KB
testcase_24 AC 756 ms
178,632 KB
testcase_25 AC 725 ms
177,808 KB
testcase_26 AC 715 ms
179,140 KB
testcase_27 TLE -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

I,R=input,range
def S(n):
	return int(n)-1
def J():
	return map(S,I().split())
N=int(I())
p,w=[i for i in R(N)],[0]*N
def r(i):
	m=p[i]
	while i!=m:
		p[i]=i=p[m]
		m=p[i]
	return i
E,L=[set() for i in R(N)],[0]*N
for i in R(1,N):
	L[i],A=J()
	E[A].add(i)
	A,B=r(A),r(i)
	if w[B]<w[A]:A,B=B,A
	if w[A]==w[B]:w[B]+=1
	p[A]=B
n={0}
while len(n):
	i=n.pop()
	for e in E[i]:L[e]=max(L[e],L[i])
	n|=E[i]
Q=int(I())
t,y,X=[0]*Q,[0]*Q,set()
for i in R(Q):
	t[i],y[i]=J()
	if 1-t[i]:X.add(y[i])
D,d,m,e={},0,[{0},set()],0
for x in sorted(X):
	n=m[e]
	while len(n):
		i=n.pop()
		if L[i]>x:m[1-e].add(i)
		else:d,n=d+1,n|E[i]
	D[x],e=d,1-e
z=r(0)
for i in R(Q):print([-1,L[y[i]]+1][r(y[i])==z] if t[i] else D[y[i]])
0