結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 37 ms
52,480 KB
testcase_05 AC 38 ms
52,096 KB
testcase_06 AC 37 ms
51,968 KB
testcase_07 AC 419 ms
82,304 KB
testcase_08 AC 320 ms
95,616 KB
testcase_09 AC 449 ms
89,908 KB
testcase_10 AC 404 ms
108,160 KB
testcase_11 AC 476 ms
99,200 KB
testcase_12 AC 767 ms
122,172 KB
testcase_13 AC 760 ms
122,240 KB
testcase_14 AC 783 ms
121,860 KB
testcase_15 AC 778 ms
121,600 KB
testcase_16 AC 784 ms
121,856 KB
testcase_17 AC 754 ms
121,472 KB
testcase_18 AC 747 ms
121,216 KB
testcase_19 AC 755 ms
121,728 KB
testcase_20 AC 766 ms
121,344 KB
testcase_21 AC 749 ms
121,344 KB
testcase_22 AC 775 ms
122,368 KB
testcase_23 AC 805 ms
121,600 KB
testcase_24 AC 768 ms
121,472 KB
testcase_25 AC 781 ms
122,112 KB
testcase_26 AC 773 ms
121,728 KB
testcase_27 AC 888 ms
116,224 KB
testcase_28 AC 876 ms
116,224 KB
testcase_29 AC 866 ms
115,456 KB
testcase_30 AC 878 ms
115,968 KB
testcase_31 AC 891 ms
116,480 KB
testcase_32 AC 827 ms
116,556 KB
testcase_33 AC 836 ms
116,352 KB
testcase_34 AC 823 ms
115,840 KB
testcase_35 AC 865 ms
116,224 KB
testcase_36 AC 868 ms
116,864 KB
testcase_37 AC 889 ms
116,224 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