結果

問題 No.2325 Skill Tree
ユーザー 👑 p-adicp-adic
提出日時 2023-05-29 01:04:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 626 bytes
コンパイル時間 963 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 120,256 KB
最終ジャッジ日時 2024-06-08 14:08:32
合計ジャッジ時間 56,432 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
16,512 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 929 ms
40,624 KB
testcase_08 AC 874 ms
46,932 KB
testcase_09 AC 1,184 ms
50,160 KB
testcase_10 AC 1,286 ms
65,228 KB
testcase_11 AC 1,384 ms
62,844 KB
testcase_12 AC 2,690 ms
114,644 KB
testcase_13 AC 2,663 ms
114,584 KB
testcase_14 AC 2,661 ms
114,440 KB
testcase_15 AC 2,766 ms
114,568 KB
testcase_16 AC 2,648 ms
114,464 KB
testcase_17 AC 2,590 ms
99,736 KB
testcase_18 AC 2,646 ms
99,916 KB
testcase_19 AC 2,578 ms
99,972 KB
testcase_20 AC 2,712 ms
99,876 KB
testcase_21 AC 2,601 ms
99,780 KB
testcase_22 AC 2,662 ms
114,568 KB
testcase_23 AC 2,672 ms
114,872 KB
testcase_24 AC 2,604 ms
114,556 KB
testcase_25 AC 2,544 ms
114,676 KB
testcase_26 AC 2,623 ms
114,576 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=[i for i in R(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)
	p[r(i)]=r(A)
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()
	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
for i in R(Q):print([-1,L[y[i]]+1][r(y[i])<1] if t[i] else D[y[i]])
0