結果

問題 No.2325 Skill Tree
ユーザー rlangevinrlangevin
提出日時 2023-05-31 12:18:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 605 ms / 3,000 ms
コード長 707 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 112,412 KB
最終ジャッジ日時 2024-06-08 21:00:02
合計ジャッジ時間 17,070 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,608 KB
testcase_01 AC 40 ms
52,352 KB
testcase_02 AC 41 ms
52,352 KB
testcase_03 AC 42 ms
52,480 KB
testcase_04 AC 40 ms
52,992 KB
testcase_05 AC 40 ms
52,608 KB
testcase_06 AC 44 ms
52,224 KB
testcase_07 AC 153 ms
80,640 KB
testcase_08 AC 163 ms
86,016 KB
testcase_09 AC 171 ms
83,840 KB
testcase_10 AC 217 ms
93,312 KB
testcase_11 AC 207 ms
89,216 KB
testcase_12 AC 319 ms
100,992 KB
testcase_13 AC 359 ms
100,864 KB
testcase_14 AC 322 ms
101,120 KB
testcase_15 AC 321 ms
100,736 KB
testcase_16 AC 295 ms
100,864 KB
testcase_17 AC 284 ms
99,712 KB
testcase_18 AC 304 ms
100,096 KB
testcase_19 AC 290 ms
100,096 KB
testcase_20 AC 293 ms
100,096 KB
testcase_21 AC 295 ms
99,968 KB
testcase_22 AC 313 ms
102,144 KB
testcase_23 AC 320 ms
101,760 KB
testcase_24 AC 321 ms
101,376 KB
testcase_25 AC 311 ms
101,760 KB
testcase_26 AC 307 ms
101,632 KB
testcase_27 AC 578 ms
110,784 KB
testcase_28 AC 605 ms
112,412 KB
testcase_29 AC 602 ms
111,248 KB
testcase_30 AC 594 ms
111,568 KB
testcase_31 AC 590 ms
110,776 KB
testcase_32 AC 545 ms
110,056 KB
testcase_33 AC 552 ms
111,656 KB
testcase_34 AC 554 ms
111,736 KB
testcase_35 AC 591 ms
112,036 KB
testcase_36 AC 589 ms
111,540 KB
testcase_37 AC 602 ms
111,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from heapq import *
from bisect import *

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

H = [(0, 0)]
X, Y = [], [-1] * N
now = 0
flag = 1
while H:
    c, u = H[0]
    if flag:
        if c <= now:
            heappop(H)
            for v, cc in G[u]:
                heappush(H, (cc, v))
            Y[u] = now
            X.append(now)
        else:
            flag = 0
    else:
        now = c
        flag = 1

Q = int(input())
for _ in range(Q):
    q, x = map(int, input().split())
    if q == 1:
        print(bisect_right(X, x))
    else:
        print(Y[x - 1])
0