結果
問題 | No.2325 Skill Tree |
ユーザー | 👑 p-adic |
提出日時 | 2023-05-29 01:19:38 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 692 bytes |
コンパイル時間 | 356 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 212,648 KB |
最終ジャッジ日時 | 2024-06-08 14:18:37 |
合計ジャッジ時間 | 22,315 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
212,648 KB |
testcase_01 | AC | 39 ms
52,352 KB |
testcase_02 | AC | 39 ms
52,480 KB |
testcase_03 | AC | 42 ms
52,352 KB |
testcase_04 | AC | 39 ms
52,096 KB |
testcase_05 | AC | 42 ms
52,480 KB |
testcase_06 | AC | 40 ms
52,224 KB |
testcase_07 | AC | 391 ms
106,636 KB |
testcase_08 | AC | 376 ms
111,080 KB |
testcase_09 | AC | 449 ms
119,560 KB |
testcase_10 | AC | 469 ms
120,968 KB |
testcase_11 | AC | 494 ms
127,836 KB |
testcase_12 | AC | 836 ms
173,500 KB |
testcase_13 | AC | 864 ms
173,572 KB |
testcase_14 | AC | 835 ms
174,028 KB |
testcase_15 | AC | 850 ms
174,088 KB |
testcase_16 | AC | 841 ms
173,500 KB |
testcase_17 | AC | 740 ms
155,320 KB |
testcase_18 | AC | 756 ms
155,544 KB |
testcase_19 | AC | 738 ms
155,832 KB |
testcase_20 | AC | 768 ms
156,264 KB |
testcase_21 | AC | 743 ms
155,196 KB |
testcase_22 | AC | 808 ms
178,624 KB |
testcase_23 | AC | 803 ms
179,088 KB |
testcase_24 | AC | 789 ms
178,376 KB |
testcase_25 | AC | 793 ms
178,456 KB |
testcase_26 | AC | 812 ms
179,136 KB |
testcase_27 | TLE | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
ソースコード
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() 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])==r(0)] if t[i] else D[y[i]])