結果

問題 No.2325 Skill Tree
ユーザー tyawanmusityawanmusi
提出日時 2023-04-24 18:13:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 525 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 90,404 KB
最終ジャッジ日時 2024-11-08 18:53:30
合計ジャッジ時間 80,173 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 WA -
testcase_03 AC 28 ms
10,752 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 865 ms
43,648 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 1,323 ms
49,920 KB
testcase_12 AC 2,491 ms
90,112 KB
testcase_13 AC 2,524 ms
90,112 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 2,444 ms
90,112 KB
testcase_17 AC 2,504 ms
90,112 KB
testcase_18 AC 2,517 ms
90,112 KB
testcase_19 AC 2,471 ms
90,112 KB
testcase_20 WA -
testcase_21 AC 2,541 ms
90,112 KB
testcase_22 AC 2,600 ms
90,112 KB
testcase_23 WA -
testcase_24 AC 2,562 ms
90,112 KB
testcase_25 AC 2,597 ms
90,112 KB
testcase_26 AC 2,592 ms
90,112 KB
testcase_27 AC 2,662 ms
90,344 KB
testcase_28 AC 2,695 ms
90,348 KB
testcase_29 AC 2,601 ms
90,144 KB
testcase_30 AC 2,695 ms
90,404 KB
testcase_31 AC 2,648 ms
90,348 KB
testcase_32 AC 2,542 ms
90,360 KB
testcase_33 AC 2,603 ms
90,400 KB
testcase_34 AC 2,579 ms
90,348 KB
testcase_35 AC 2,624 ms
90,344 KB
testcase_36 AC 2,579 ms
90,352 KB
testcase_37 AC 2,625 ms
90,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_right
n=int(input())
lp=[list(map(int,input().split())) for _ in range(n-1)]
cil=[[]for _ in range(n)]
for i in range(1,n):
    l,p=lp[i-1]
    cil[p-1].append((i,l))
level=[10**10]*n
level[0]=0
for i in range(n):
    for node,l in cil[i]:
        level[node]=max(level[i],l)
level_s=sorted(level)
for _ in range(int(input())):
    q,xy=map(int, input().split())
    if q==1:
        print(bisect_right(level_s,xy))
    else:
        if level[xy-1]==10**10:print(-1)
        else:print(level[xy-1])
0