結果

問題 No.2325 Skill Tree
ユーザー tyawanmusityawanmusi
提出日時 2023-05-24 12:02:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 796 bytes
コンパイル時間 454 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 92,100 KB
最終ジャッジ日時 2024-06-06 04:18:38
合計ジャッジ時間 80,748 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 32 ms
10,880 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 31 ms
11,008 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 1,027 ms
21,760 KB
testcase_08 AC 895 ms
43,648 KB
testcase_09 AC 1,215 ms
33,408 KB
testcase_10 AC 1,205 ms
66,048 KB
testcase_11 AC 1,374 ms
49,920 KB
testcase_12 AC 2,531 ms
90,240 KB
testcase_13 AC 2,565 ms
90,368 KB
testcase_14 AC 2,540 ms
90,240 KB
testcase_15 AC 2,515 ms
90,240 KB
testcase_16 AC 2,533 ms
90,240 KB
testcase_17 AC 2,494 ms
90,240 KB
testcase_18 AC 2,550 ms
90,240 KB
testcase_19 AC 2,483 ms
90,240 KB
testcase_20 AC 2,506 ms
90,112 KB
testcase_21 AC 2,516 ms
90,112 KB
testcase_22 AC 2,555 ms
90,112 KB
testcase_23 AC 2,564 ms
90,112 KB
testcase_24 AC 2,534 ms
90,240 KB
testcase_25 AC 2,491 ms
90,240 KB
testcase_26 AC 2,529 ms
90,240 KB
testcase_27 TLE -
testcase_28 AC 2,937 ms
92,100 KB
testcase_29 AC 2,931 ms
91,776 KB
testcase_30 AC 2,931 ms
92,032 KB
testcase_31 AC 2,937 ms
91,980 KB
testcase_32 AC 2,930 ms
91,980 KB
testcase_33 AC 2,915 ms
92,024 KB
testcase_34 AC 2,923 ms
91,980 KB
testcase_35 AC 2,949 ms
91,972 KB
testcase_36 AC 2,953 ms
91,976 KB
testcase_37 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#1個前の提出はassertの条件を間違えています
from bisect import bisect_right
n=int(input())
assert 2<=n<=2*10**5
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]
    assert 1<=l<=10**9
    assert 1<=p<=n and p!=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)
q=int(input())
assert 1<=q<=2*10**5
for _ in range(q):
    q,xy=map(int, input().split())
    assert q==1 or q==2
    if q==1:
        assert 1<=xy<=10**9
        print(bisect_right(level_s,xy))
    else:
        assert 2<=xy<=n
        if level[xy-1]==10**10:print(-1)
        else:print(level[xy-1])
0