結果

問題 No.2325 Skill Tree
ユーザー ntudantuda
提出日時 2023-06-05 21:41:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,017 ms / 3,000 ms
コード長 679 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 100,352 KB
最終ジャッジ日時 2024-06-09 05:19:30
合計ジャッジ時間 30,814 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,820 KB
testcase_01 AC 40 ms
53,044 KB
testcase_02 AC 41 ms
53,912 KB
testcase_03 AC 41 ms
52,584 KB
testcase_04 AC 39 ms
53,508 KB
testcase_05 AC 41 ms
54,168 KB
testcase_06 AC 37 ms
52,496 KB
testcase_07 AC 425 ms
80,168 KB
testcase_08 AC 335 ms
85,760 KB
testcase_09 AC 479 ms
82,764 KB
testcase_10 AC 403 ms
91,648 KB
testcase_11 AC 494 ms
87,092 KB
testcase_12 AC 810 ms
98,652 KB
testcase_13 AC 781 ms
98,904 KB
testcase_14 AC 824 ms
98,028 KB
testcase_15 AC 822 ms
99,044 KB
testcase_16 AC 780 ms
99,328 KB
testcase_17 AC 769 ms
97,920 KB
testcase_18 AC 783 ms
98,048 KB
testcase_19 AC 770 ms
98,176 KB
testcase_20 AC 773 ms
97,792 KB
testcase_21 AC 768 ms
97,792 KB
testcase_22 AC 800 ms
98,432 KB
testcase_23 AC 775 ms
98,792 KB
testcase_24 AC 769 ms
98,824 KB
testcase_25 AC 780 ms
98,048 KB
testcase_26 AC 792 ms
98,816 KB
testcase_27 AC 946 ms
100,096 KB
testcase_28 AC 933 ms
100,092 KB
testcase_29 AC 917 ms
99,448 KB
testcase_30 AC 931 ms
99,628 KB
testcase_31 AC 925 ms
99,892 KB
testcase_32 AC 879 ms
100,352 KB
testcase_33 AC 866 ms
100,352 KB
testcase_34 AC 885 ms
99,840 KB
testcase_35 AC 919 ms
100,188 KB
testcase_36 AC 922 ms
100,224 KB
testcase_37 AC 1,017 ms
99,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = [[] for _ in range(N + 1)]  # S[i]:= iを覚えていると思えられる技のリスト
L = [0] * (N + 1)  # L[i]:= 技iを覚えるのに必要なレベル
L[1] = 1
L1 = [-1] * (N + 1)
L1[1] = 1
for i in range(2, N + 1):
    l, s = map(int, input().split())
    S[s].append(i)
    L[i] = l
q = [1]
while q:
    x = q.pop(-1)
    for y in S[x]:
        L1[y] = max(L1[x], L[y])
        q.append(y)

L2 = L1[:]
L2.sort()
from bisect import *

x = bisect_left(L2, 0)
L2 = L2[x:]

# print(L)
# print(L2)

Q = int(input())
for _ in range(Q):
    t, x = map(int, input().split())
    if t == 1:
        print(bisect_right(L2, x))
    else:
        print(L1[x])
0