結果

問題 No.2325 Skill Tree
ユーザー masa_aamasa_aa
提出日時 2023-05-28 14:17:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 770 ms / 3,000 ms
コード長 1,302 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 142,176 KB
最終ジャッジ日時 2024-06-08 05:06:10
合計ジャッジ時間 22,953 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,632 KB
testcase_01 AC 43 ms
54,016 KB
testcase_02 AC 43 ms
53,760 KB
testcase_03 AC 43 ms
53,632 KB
testcase_04 AC 43 ms
54,016 KB
testcase_05 AC 42 ms
53,760 KB
testcase_06 AC 43 ms
53,760 KB
testcase_07 AC 201 ms
89,216 KB
testcase_08 AC 291 ms
104,704 KB
testcase_09 AC 265 ms
95,280 KB
testcase_10 AC 425 ms
121,472 KB
testcase_11 AC 331 ms
105,472 KB
testcase_12 AC 606 ms
128,380 KB
testcase_13 AC 615 ms
127,932 KB
testcase_14 AC 627 ms
128,880 KB
testcase_15 AC 613 ms
128,912 KB
testcase_16 AC 598 ms
130,852 KB
testcase_17 AC 579 ms
130,432 KB
testcase_18 AC 597 ms
126,332 KB
testcase_19 AC 583 ms
131,072 KB
testcase_20 AC 592 ms
127,232 KB
testcase_21 AC 569 ms
130,816 KB
testcase_22 AC 610 ms
128,376 KB
testcase_23 AC 624 ms
129,256 KB
testcase_24 AC 616 ms
127,900 KB
testcase_25 AC 603 ms
130,560 KB
testcase_26 AC 616 ms
130,696 KB
testcase_27 AC 754 ms
142,176 KB
testcase_28 AC 764 ms
137,664 KB
testcase_29 AC 756 ms
138,368 KB
testcase_30 AC 752 ms
137,440 KB
testcase_31 AC 736 ms
141,744 KB
testcase_32 AC 739 ms
136,372 KB
testcase_33 AC 716 ms
141,512 KB
testcase_34 AC 730 ms
141,552 KB
testcase_35 AC 749 ms
140,740 KB
testcase_36 AC 770 ms
137,004 KB
testcase_37 AC 763 ms
137,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import defaultdict
from bisect import bisect_left, bisect_right
# bisect_left(a, x): a[i] >= xとなるような最小のi.
# 昇順ソートされたリストaに昇順を崩さずxを挿入できる位置s(0-index)を返す.
# a = [1, 3, 5, 7, 9, 11, 13, 15, 17, 19]
# s = bisect_left(a,4), s = 2


n = int(input())
la = [list(map(int, input().split())) + [i + 1] for i in range(n - 1)]
for v in la:
    v[1] -= 1

la.sort(key=lambda x: x[0])
d = defaultdict(int)
d[0] = 1

stk = defaultdict(list)
check = [-1] * n
check[0] = 1
for level, a, idx in la:
    if check[a] != -1:
        check[idx] = level
        d[level] += 1
        que = [idx]
        while que:
            k = que.pop()
            for x in stk[k]:
                check[x] = level
                que.append(x)
                d[level] += 1
            stk[k] = []

    else:
        stk[a].append(idx)

d = list(d.items())
d.sort(key=lambda x: x[0])
for i in range(len(d) - 1):
    d[i + 1] = (d[i + 1][0], d[i][1] + d[i + 1][1])

q = int(input())
res = [0] * q
for i in range(q):
    query, x = map(int, input().split())
    if query == 1:
        k = bisect_left(d, (x, n + 10))
        res[i] = d[k - 1][1]
    else:
        res[i] = check[x - 1]

print(*res, sep="\n")
0