結果

問題 No.2325 Skill Tree
ユーザー tyawanmusityawanmusi
提出日時 2023-05-24 12:02:15
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 796 bytes
コンパイル時間 494 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 92,032 KB
最終ジャッジ日時 2024-12-23 15:41:13
合計ジャッジ時間 86,162 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,880 KB
testcase_01 AC 33 ms
10,880 KB
testcase_02 AC 32 ms
10,880 KB
testcase_03 AC 32 ms
10,880 KB
testcase_04 AC 33 ms
10,880 KB
testcase_05 AC 32 ms
10,752 KB
testcase_06 AC 32 ms
10,880 KB
testcase_07 AC 1,074 ms
21,632 KB
testcase_08 AC 915 ms
43,520 KB
testcase_09 AC 1,282 ms
33,280 KB
testcase_10 AC 1,272 ms
65,920 KB
testcase_11 AC 1,451 ms
49,792 KB
testcase_12 AC 2,638 ms
90,112 KB
testcase_13 AC 2,710 ms
90,240 KB
testcase_14 AC 2,686 ms
90,112 KB
testcase_15 AC 2,687 ms
90,240 KB
testcase_16 AC 2,743 ms
90,240 KB
testcase_17 AC 2,662 ms
90,112 KB
testcase_18 AC 2,707 ms
90,112 KB
testcase_19 AC 2,680 ms
90,112 KB
testcase_20 AC 2,681 ms
90,112 KB
testcase_21 AC 2,664 ms
89,984 KB
testcase_22 AC 2,771 ms
90,112 KB
testcase_23 AC 2,679 ms
89,984 KB
testcase_24 AC 2,692 ms
90,112 KB
testcase_25 AC 2,646 ms
90,112 KB
testcase_26 AC 2,689 ms
90,112 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
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