結果

問題 No.2325 Skill Tree
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2023-05-28 15:28:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 443 ms / 3,000 ms
コード長 753 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 119,604 KB
最終ジャッジ日時 2024-06-08 07:50:41
合計ジャッジ時間 14,886 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,888 KB
testcase_01 AC 42 ms
54,272 KB
testcase_02 AC 42 ms
53,888 KB
testcase_03 AC 41 ms
54,016 KB
testcase_04 AC 42 ms
54,016 KB
testcase_05 AC 42 ms
53,504 KB
testcase_06 AC 42 ms
54,016 KB
testcase_07 AC 160 ms
88,984 KB
testcase_08 AC 166 ms
92,296 KB
testcase_09 AC 192 ms
92,500 KB
testcase_10 AC 217 ms
103,512 KB
testcase_11 AC 205 ms
96,992 KB
testcase_12 AC 335 ms
116,904 KB
testcase_13 AC 329 ms
116,008 KB
testcase_14 AC 339 ms
117,176 KB
testcase_15 AC 342 ms
117,172 KB
testcase_16 AC 330 ms
115,760 KB
testcase_17 AC 306 ms
116,144 KB
testcase_18 AC 312 ms
116,272 KB
testcase_19 AC 312 ms
116,276 KB
testcase_20 AC 316 ms
116,264 KB
testcase_21 AC 313 ms
116,264 KB
testcase_22 AC 336 ms
119,468 KB
testcase_23 AC 341 ms
119,604 KB
testcase_24 AC 332 ms
119,208 KB
testcase_25 AC 324 ms
118,700 KB
testcase_26 AC 330 ms
118,696 KB
testcase_27 AC 443 ms
115,632 KB
testcase_28 AC 433 ms
116,280 KB
testcase_29 AC 422 ms
116,260 KB
testcase_30 AC 432 ms
116,652 KB
testcase_31 AC 432 ms
116,032 KB
testcase_32 AC 407 ms
113,216 KB
testcase_33 AC 399 ms
113,196 KB
testcase_34 AC 400 ms
113,360 KB
testcase_35 AC 431 ms
118,208 KB
testcase_36 AC 419 ms
119,100 KB
testcase_37 AC 443 ms
119,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
import bisect
from collections import deque

N = int(stdin.readline())

L = [0] + [float("inf")] * (N-1)

lis = [ [] for i in range(N) ]

for i in range(N-1):

    l,a = map(int,stdin.readline().split())
    a -= 1
    lis[a].append( (i+1,l) )

q = deque([0])
while q:
    v = q.popleft()
    for nex,cost in lis[v]:
        L[nex] = max(L[v] , cost)
        q.append(nex)

L2 = [i for i in L]
L2.sort()

Q = int(stdin.readline())

ANS = []
for loop in range(Q):

    ty,x = map(int,stdin.readline().split())

    if ty == 1:
        idx = bisect.bisect_right(L2,x)
        ANS.append(idx)
    else:
        if L[x-1] == float("inf"):
            ANS.append(-1)
        else:
            ANS.append(L[x-1])

print (*ANS,sep="\n")
0