結果

問題 No.2325 Skill Tree
ユーザー qibqib
提出日時 2023-05-29 23:15:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,091 ms / 3,000 ms
コード長 812 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 119,720 KB
最終ジャッジ日時 2024-06-08 19:38:55
合計ジャッジ時間 28,629 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,992 KB
testcase_01 AC 39 ms
52,864 KB
testcase_02 AC 40 ms
52,736 KB
testcase_03 AC 41 ms
52,608 KB
testcase_04 AC 41 ms
52,480 KB
testcase_05 AC 42 ms
52,480 KB
testcase_06 AC 39 ms
52,864 KB
testcase_07 AC 370 ms
81,024 KB
testcase_08 AC 287 ms
87,296 KB
testcase_09 AC 399 ms
83,968 KB
testcase_10 AC 336 ms
93,184 KB
testcase_11 AC 429 ms
88,960 KB
testcase_12 AC 694 ms
100,480 KB
testcase_13 AC 671 ms
100,480 KB
testcase_14 AC 733 ms
100,352 KB
testcase_15 AC 776 ms
100,224 KB
testcase_16 AC 668 ms
100,480 KB
testcase_17 AC 657 ms
100,736 KB
testcase_18 AC 695 ms
100,480 KB
testcase_19 AC 679 ms
100,736 KB
testcase_20 AC 664 ms
100,608 KB
testcase_21 AC 661 ms
100,864 KB
testcase_22 AC 688 ms
100,480 KB
testcase_23 AC 674 ms
100,608 KB
testcase_24 AC 676 ms
100,480 KB
testcase_25 AC 698 ms
100,480 KB
testcase_26 AC 675 ms
100,224 KB
testcase_27 AC 1,083 ms
117,196 KB
testcase_28 AC 1,043 ms
116,128 KB
testcase_29 AC 1,043 ms
114,860 KB
testcase_30 AC 1,068 ms
116,312 KB
testcase_31 AC 1,058 ms
117,180 KB
testcase_32 AC 1,005 ms
118,428 KB
testcase_33 AC 987 ms
115,956 KB
testcase_34 AC 994 ms
116,460 KB
testcase_35 AC 1,040 ms
116,596 KB
testcase_36 AC 1,039 ms
119,720 KB
testcase_37 AC 1,091 ms
117,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
import bisect as bs

INF = 1 << 60

n = int(input())

g = [[] for _ in range(n)]

for i in range(1, n):
  l, a = map(int, input().split())
  a -= 1
  g[a].append((i, l))

src = 0
dist = [INF for _ in range(n)]
dist[src] = 1
hp = [(1, src)]
while len(hp) > 0:
  cd, cur = heapq.heappop(hp)
  if cd > dist[cur]:
    continue
  for nxt, lv in g[cur]:
    if dist[nxt] <= max(dist[cur], lv):
      continue
    dist[nxt] = max(dist[cur], lv)
    heapq.heappush(hp, (dist[nxt], nxt))

items = []
for v in range(n):
  if dist[v] < INF:
    items.append(dist[v])

items.sort()

q = int(input())
for _ in range(q):
  t, x = map(int, input().split())
  if t == 1:
    i = bs.bisect_right(items, x)
    print(i)
  elif t == 2:
    x -= 1
    if dist[x] < INF:
      print(dist[x])
    else:
      print("-1")
0