結果

問題 No.2325 Skill Tree
ユーザー praticapratica
提出日時 2023-05-28 15:13:09
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 922 bytes
コンパイル時間 912 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 852,104 KB
最終ジャッジ日時 2024-06-08 07:13:19
合計ジャッジ時間 4,767 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,608 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 41 ms
52,736 KB
testcase_03 AC 39 ms
52,608 KB
testcase_04 AC 43 ms
53,376 KB
testcase_05 AC 42 ms
52,608 KB
testcase_06 AC 39 ms
52,608 KB
testcase_07 RE -
testcase_08 MLE -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
import bisect

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

p = [[] for i in range(N)]
for i in range(N-1):
    p[skill[i][1]-1].append(i+1)
    
que = []
heapq.heapify(que)
heapq.heappush(que,[1,0])
seen = [-1]*N
seen[0] = 1
#print(que)

level = 0
while que:
    l, now = heapq.heappop(que)
    if level <= l:
        level = l
    seen[now] = level
    for next in p[now]:
        heapq.heappush(que,[skill[next-1][0],next])
        
M = max(seen)
table = [0]*(M+1)
for i in seen:
    if i == -1:
        continue
    table[i] += 1
for i in range(M):
    table[i+1] += table[i]
    
levellist = sorted(seen)
cnt = seen.count(-1)

Q = int(input())
for q in range(Q):
    a = list(map(int,input().split()))
    #print(a)
    if a[0] == 1:
        print(bisect.bisect_right(levellist,a[1])-cnt)
    else:
        print(seen[a[1]-1])
0