結果

問題 No.2325 Skill Tree
ユーザー tyawanmusityawanmusi
提出日時 2023-04-24 18:17:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,920 ms / 3,000 ms
コード長 562 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 92,084 KB
最終ジャッジ日時 2024-11-08 18:56:42
合計ジャッジ時間 78,314 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 976 ms
21,632 KB
testcase_08 AC 804 ms
43,520 KB
testcase_09 AC 1,195 ms
33,280 KB
testcase_10 AC 1,152 ms
66,048 KB
testcase_11 AC 1,273 ms
49,792 KB
testcase_12 AC 2,406 ms
90,112 KB
testcase_13 AC 2,416 ms
90,112 KB
testcase_14 AC 2,385 ms
90,112 KB
testcase_15 AC 2,388 ms
90,112 KB
testcase_16 AC 2,405 ms
90,112 KB
testcase_17 AC 2,454 ms
90,240 KB
testcase_18 AC 2,389 ms
90,112 KB
testcase_19 AC 2,395 ms
90,112 KB
testcase_20 AC 2,346 ms
90,112 KB
testcase_21 AC 2,372 ms
90,240 KB
testcase_22 AC 2,441 ms
90,112 KB
testcase_23 AC 2,393 ms
90,112 KB
testcase_24 AC 2,502 ms
90,240 KB
testcase_25 AC 2,469 ms
90,112 KB
testcase_26 AC 2,387 ms
90,112 KB
testcase_27 AC 2,846 ms
91,896 KB
testcase_28 AC 2,802 ms
91,912 KB
testcase_29 AC 2,832 ms
91,612 KB
testcase_30 AC 2,844 ms
92,084 KB
testcase_31 AC 2,802 ms
91,908 KB
testcase_32 AC 2,781 ms
91,912 KB
testcase_33 AC 2,756 ms
91,948 KB
testcase_34 AC 2,740 ms
91,900 KB
testcase_35 AC 2,825 ms
91,904 KB
testcase_36 AC 2,790 ms
91,904 KB
testcase_37 AC 2,920 ms
91,948 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
sta=[0]
for node in sta:
    for mode,l in cil[node]:
        level[mode]=max(level[node],l)
        sta.append(mode)
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