結果

問題 No.2325 Skill Tree
ユーザー ああいいああいい
提出日時 2023-06-01 09:10:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 753 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 112,476 KB
最終ジャッジ日時 2024-06-08 21:27:43
合計ジャッジ時間 26,791 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 WA -
testcase_02 AC 37 ms
51,968 KB
testcase_03 WA -
testcase_04 AC 39 ms
52,224 KB
testcase_05 AC 37 ms
52,224 KB
testcase_06 AC 38 ms
51,712 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 719 ms
111,060 KB
testcase_18 AC 713 ms
110,932 KB
testcase_19 AC 730 ms
110,932 KB
testcase_20 AC 718 ms
110,416 KB
testcase_21 AC 724 ms
110,796 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 958 ms
108,976 KB
testcase_28 AC 866 ms
109,132 KB
testcase_29 AC 831 ms
107,572 KB
testcase_30 AC 837 ms
108,352 KB
testcase_31 AC 828 ms
108,424 KB
testcase_32 AC 791 ms
108,040 KB
testcase_33 AC 807 ms
107,832 KB
testcase_34 AC 799 ms
108,212 KB
testcase_35 AC 797 ms
108,216 KB
testcase_36 AC 822 ms
107,912 KB
testcase_37 AC 820 ms
108,088 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 = level.copy()
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