結果

問題 No.2325 Skill Tree
ユーザー titiatitia
提出日時 2023-06-02 03:44:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 689 bytes
コンパイル時間 524 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 95,776 KB
最終ジャッジ日時 2024-06-08 21:52:57
合計ジャッジ時間 86,149 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 32 ms
10,880 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 989 ms
21,760 KB
testcase_08 AC 845 ms
43,648 KB
testcase_09 AC 1,194 ms
33,152 KB
testcase_10 AC 1,179 ms
65,920 KB
testcase_11 AC 1,327 ms
49,792 KB
testcase_12 AC 2,484 ms
90,240 KB
testcase_13 AC 2,512 ms
89,984 KB
testcase_14 AC 2,537 ms
90,112 KB
testcase_15 AC 2,543 ms
89,984 KB
testcase_16 AC 2,527 ms
90,112 KB
testcase_17 AC 2,534 ms
90,112 KB
testcase_18 AC 2,515 ms
90,112 KB
testcase_19 AC 2,493 ms
90,112 KB
testcase_20 AC 2,452 ms
90,112 KB
testcase_21 AC 2,435 ms
89,984 KB
testcase_22 AC 2,480 ms
89,984 KB
testcase_23 AC 2,543 ms
89,984 KB
testcase_24 AC 2,595 ms
89,984 KB
testcase_25 AC 2,515 ms
89,984 KB
testcase_26 AC 2,493 ms
89,984 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 #

from heapq import heappop,heappush
from bisect import bisect

N=int(input())
T=[list(map(int,input().split())) for i in range(N-1)]

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

for i in range(N-1):
    l,a=T[i]
    a-=1

    E[a].append((i+1,l))

LEVEL=[1<<60]*N
LEVEL[0]=0

Q=[(0,0)]

while Q:
    x,level=heappop(Q)

    for to,lev in E[x]:
        if LEVEL[to]>max(level,lev):
            LEVEL[to]=max(level,lev)
            heappush(Q,(to,LEVEL[to]))
            
SL=sorted(LEVEL)


for i in range(N):
    if LEVEL[i]==1<<60:
        LEVEL[i]=-1


Q=int(input())

for tests in range(Q):
    com,x=map(int,input().split())

    if com==1:
        print(bisect(SL,x))
    else:
        print(LEVEL[x-1])
0