結果

問題 No.2325 Skill Tree
ユーザー tontirutontiru
提出日時 2023-05-29 11:55:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,066 ms / 3,000 ms
コード長 923 bytes
コンパイル時間 1,016 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 126,768 KB
最終ジャッジ日時 2024-06-08 19:11:58
合計ジャッジ時間 32,999 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,352 KB
testcase_01 AC 43 ms
52,352 KB
testcase_02 AC 39 ms
52,352 KB
testcase_03 AC 40 ms
52,480 KB
testcase_04 AC 40 ms
52,352 KB
testcase_05 AC 40 ms
52,352 KB
testcase_06 AC 40 ms
52,352 KB
testcase_07 AC 413 ms
82,432 KB
testcase_08 AC 350 ms
95,348 KB
testcase_09 AC 484 ms
89,476 KB
testcase_10 AC 432 ms
108,104 KB
testcase_11 AC 514 ms
98,484 KB
testcase_12 AC 851 ms
123,636 KB
testcase_13 AC 870 ms
123,500 KB
testcase_14 AC 820 ms
123,884 KB
testcase_15 AC 829 ms
123,376 KB
testcase_16 AC 821 ms
123,876 KB
testcase_17 AC 813 ms
123,888 KB
testcase_18 AC 812 ms
123,632 KB
testcase_19 AC 812 ms
123,892 KB
testcase_20 AC 828 ms
123,888 KB
testcase_21 AC 844 ms
124,016 KB
testcase_22 AC 837 ms
123,492 KB
testcase_23 AC 834 ms
123,500 KB
testcase_24 AC 851 ms
123,372 KB
testcase_25 AC 832 ms
123,748 KB
testcase_26 AC 876 ms
123,504 KB
testcase_27 AC 1,066 ms
125,356 KB
testcase_28 AC 1,049 ms
123,568 KB
testcase_29 AC 1,009 ms
123,444 KB
testcase_30 AC 1,027 ms
123,960 KB
testcase_31 AC 1,044 ms
126,768 KB
testcase_32 AC 946 ms
123,388 KB
testcase_33 AC 923 ms
123,656 KB
testcase_34 AC 942 ms
124,276 KB
testcase_35 AC 1,008 ms
124,212 KB
testcase_36 AC 972 ms
123,792 KB
testcase_37 AC 1,013 ms
124,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
N = int(input())

needLV = [-1 for i in range(0,N+1)]
needLV[1] = 0
data = {}
LV = [0,0]
for i in range(1,N+1):
    data[i] = []

for i in range(N-1):
    L,A = map(int,input().split())
    data[A].append(i+2)
    LV.append(L)
#print(data)
nex = [1]

visited = [0 for i in range(0,N+1)]
while nex != []:
    nex2 = []
    for i in nex:
        visited[i] = 1
        for j in data[i]:
            if visited[j] == 0:
                needLV[j] = max(LV[i],LV[j],needLV[i])
                nex2.append(j)
    nex = nex2.copy()




Q = int(input())
bisect_lis = []

for i in range(0,len(needLV)):
    if needLV[i] == -1:
        bisect_lis.append(10**10)
    else:
        bisect_lis.append(needLV[i])

bisect_lis = sorted(bisect_lis)




for i in range(Q):
    num,sub = map(int,input().split())
    if num == 1:
        print(bisect.bisect_right(bisect_lis,sub))
    else:
        
        print(needLV[sub])

0