結果

問題 No.2325 Skill Tree
ユーザー dangodango
提出日時 2023-06-13 21:24:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 986 ms / 3,000 ms
コード長 540 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 105,296 KB
最終ジャッジ日時 2024-06-22 07:41:23
合計ジャッジ時間 32,057 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,752 KB
testcase_01 AC 40 ms
54,248 KB
testcase_02 AC 41 ms
54,220 KB
testcase_03 AC 42 ms
54,404 KB
testcase_04 AC 44 ms
54,304 KB
testcase_05 AC 43 ms
54,864 KB
testcase_06 AC 45 ms
55,104 KB
testcase_07 AC 471 ms
81,448 KB
testcase_08 AC 325 ms
87,508 KB
testcase_09 AC 472 ms
84,592 KB
testcase_10 AC 409 ms
95,804 KB
testcase_11 AC 480 ms
89,644 KB
testcase_12 AC 821 ms
104,992 KB
testcase_13 AC 788 ms
104,924 KB
testcase_14 AC 797 ms
104,924 KB
testcase_15 AC 826 ms
104,792 KB
testcase_16 AC 799 ms
104,924 KB
testcase_17 AC 796 ms
104,928 KB
testcase_18 AC 792 ms
105,180 KB
testcase_19 AC 795 ms
105,048 KB
testcase_20 AC 795 ms
105,296 KB
testcase_21 AC 793 ms
104,912 KB
testcase_22 AC 851 ms
105,040 KB
testcase_23 AC 821 ms
104,924 KB
testcase_24 AC 832 ms
104,792 KB
testcase_25 AC 819 ms
105,048 KB
testcase_26 AC 822 ms
105,052 KB
testcase_27 AC 986 ms
104,540 KB
testcase_28 AC 965 ms
103,528 KB
testcase_29 AC 937 ms
103,012 KB
testcase_30 AC 940 ms
103,276 KB
testcase_31 AC 956 ms
104,436 KB
testcase_32 AC 926 ms
103,296 KB
testcase_33 AC 939 ms
103,388 KB
testcase_34 AC 901 ms
103,408 KB
testcase_35 AC 934 ms
103,664 KB
testcase_36 AC 938 ms
103,680 KB
testcase_37 AC 945 ms
103,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect, collections
N = int(input())
E = [[] for _ in range(N)]
TEMP = [1]
for i in range(1, N):
  Li, Ai = map(int, input().split())
  TEMP.append(Li)
  E[Ai - 1].append(i)
INFINITY = 1 << 30
L = [INFINITY] * N
L[0] = 1
D = collections.deque([0])
while D:
  U = D.popleft()
  for V in E[U]:
    L[V] = max(TEMP[V], L[U])
    D.append(V)
SL = sorted(L)
for _ in range(int(input())):
  T, X = list(map(int, input().split()))
  if T == 1:
    print(bisect.bisect_right(SL, X))
  else:
    print(L[X - 1] if L[X - 1] < INFINITY else -1)
0