結果

問題 No.2325 Skill Tree
ユーザー ああいいああいい
提出日時 2023-06-01 09:11:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 982 ms / 3,000 ms
コード長 786 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 120,760 KB
最終ジャッジ日時 2024-06-08 21:28:21
合計ジャッジ時間 29,452 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 43 ms
52,352 KB
testcase_02 AC 42 ms
51,712 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 39 ms
51,840 KB
testcase_05 AC 40 ms
52,480 KB
testcase_06 AC 38 ms
51,712 KB
testcase_07 AC 442 ms
81,152 KB
testcase_08 AC 330 ms
88,576 KB
testcase_09 AC 460 ms
85,888 KB
testcase_10 AC 398 ms
98,552 KB
testcase_11 AC 474 ms
91,676 KB
testcase_12 AC 774 ms
109,392 KB
testcase_13 AC 772 ms
109,400 KB
testcase_14 AC 786 ms
109,400 KB
testcase_15 AC 842 ms
109,784 KB
testcase_16 AC 781 ms
109,276 KB
testcase_17 AC 774 ms
109,140 KB
testcase_18 AC 806 ms
109,404 KB
testcase_19 AC 763 ms
109,396 KB
testcase_20 AC 802 ms
109,268 KB
testcase_21 AC 775 ms
109,260 KB
testcase_22 AC 786 ms
109,272 KB
testcase_23 AC 773 ms
108,952 KB
testcase_24 AC 783 ms
109,388 KB
testcase_25 AC 758 ms
109,020 KB
testcase_26 AC 784 ms
110,168 KB
testcase_27 AC 930 ms
120,760 KB
testcase_28 AC 982 ms
120,708 KB
testcase_29 AC 912 ms
119,592 KB
testcase_30 AC 947 ms
120,396 KB
testcase_31 AC 916 ms
120,332 KB
testcase_32 AC 895 ms
120,212 KB
testcase_33 AC 903 ms
119,988 KB
testcase_34 AC 902 ms
120,116 KB
testcase_35 AC 874 ms
120,008 KB
testcase_36 AC 863 ms
120,068 KB
testcase_37 AC 912 ms
120,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
L = [0]
A = [-1]
G = [[] for _ in range(N)]

for _ in range(N - 1):
    l,a = map(int,input().split())
    L.append(l)
    A.append(a - 1)
    G[a-1].append(_ + 1)

Q = int(input())
inf = 10 ** 10

level = [-1] * N
level[0] = 0

stack = [0]
while stack:
    now = stack.pop()
    for v in G[now]:
        level[v] = max(level[now],L[v])
        stack.append(v)
u = []
for j in level:
    if j != -1:u.append(j)
u.sort()
for _ in range(Q):
    i,t = map(int,input().split())
    x = t
    y = t
    if i == 1:
        end = len(u)
        start = 0
        while end - start > 1:
            mid = end + start >> 1
            if u[mid] <= x:
                start = mid
            else:
                end = mid
        print(end)
    else:
        print(level[y-1])
0