結果

問題 No.2325 Skill Tree
ユーザー praticapratica
提出日時 2023-05-28 15:17:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 922 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 821,120 KB
最終ジャッジ日時 2024-06-08 07:25:07
合計ジャッジ時間 4,240 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,880 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 28 ms
11,008 KB
testcase_05 AC 28 ms
10,880 KB
testcase_06 AC 26 ms
10,880 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