結果

問題 No.2325 Skill Tree
ユーザー kemunikukemuniku
提出日時 2023-05-28 13:48:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 926 ms / 3,000 ms
コード長 658 bytes
コンパイル時間 775 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 122,240 KB
最終ジャッジ日時 2024-12-26 21:59:12
合計ジャッジ時間 28,039 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 38 ms
52,480 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 37 ms
52,352 KB
testcase_04 AC 37 ms
51,968 KB
testcase_05 AC 38 ms
52,608 KB
testcase_06 AC 37 ms
52,352 KB
testcase_07 AC 432 ms
83,200 KB
testcase_08 AC 321 ms
94,976 KB
testcase_09 AC 472 ms
90,240 KB
testcase_10 AC 389 ms
108,160 KB
testcase_11 AC 467 ms
99,480 KB
testcase_12 AC 802 ms
122,112 KB
testcase_13 AC 805 ms
121,856 KB
testcase_14 AC 797 ms
121,728 KB
testcase_15 AC 817 ms
121,984 KB
testcase_16 AC 798 ms
122,240 KB
testcase_17 AC 778 ms
121,540 KB
testcase_18 AC 762 ms
121,344 KB
testcase_19 AC 770 ms
121,568 KB
testcase_20 AC 764 ms
121,472 KB
testcase_21 AC 778 ms
121,784 KB
testcase_22 AC 809 ms
121,728 KB
testcase_23 AC 801 ms
121,856 KB
testcase_24 AC 802 ms
121,940 KB
testcase_25 AC 803 ms
121,944 KB
testcase_26 AC 816 ms
122,240 KB
testcase_27 AC 926 ms
116,864 KB
testcase_28 AC 904 ms
116,480 KB
testcase_29 AC 891 ms
115,968 KB
testcase_30 AC 902 ms
116,224 KB
testcase_31 AC 906 ms
116,372 KB
testcase_32 AC 860 ms
116,532 KB
testcase_33 AC 863 ms
116,352 KB
testcase_34 AC 876 ms
116,444 KB
testcase_35 AC 902 ms
116,332 KB
testcase_36 AC 921 ms
116,992 KB
testcase_37 AC 915 ms
116,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
P = [-1]*N
Gout = [set() for i in range(N)]
LEVEL = [10**18]*N
Llist = [-1]*N
Llist[0] = 0
LEVEL[0] = 0
for i in range(1,N):
    L,A = map(int,input().split())
    P[i] = A-1
    Gout[A-1].add(i)
    Llist[i] = L
stack = [0]

while stack:
    i = stack.pop()
    for j in Gout[i]:
        LEVEL[j] = max(Llist[j],LEVEL[i])
        stack.append(j)
needlevel = LEVEL[:]
needlevel.sort()
import bisect
Q = int(input())
for i in range(Q):
    x,y = map(int,input().split())
    if x == 1:
        print(bisect.bisect_right(needlevel,y))
    else:
        if LEVEL[y-1] == 10**18:
            print(-1)
        else:
            print(LEVEL[y-1])
0