結果

問題 No.2325 Skill Tree
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-05-28 15:03:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 618 ms / 3,000 ms
コード長 881 bytes
コンパイル時間 1,495 ms
コンパイル使用メモリ 81,588 KB
実行使用メモリ 153,572 KB
最終ジャッジ日時 2024-06-08 06:54:05
合計ジャッジ時間 19,983 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 36 ms
52,480 KB
testcase_03 AC 37 ms
52,480 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 37 ms
52,224 KB
testcase_06 AC 36 ms
52,224 KB
testcase_07 AC 276 ms
96,400 KB
testcase_08 AC 259 ms
100,268 KB
testcase_09 AC 296 ms
103,032 KB
testcase_10 AC 332 ms
112,020 KB
testcase_11 AC 330 ms
110,640 KB
testcase_12 AC 503 ms
139,980 KB
testcase_13 AC 501 ms
140,044 KB
testcase_14 AC 512 ms
140,160 KB
testcase_15 AC 501 ms
140,136 KB
testcase_16 AC 501 ms
139,844 KB
testcase_17 AC 481 ms
139,664 KB
testcase_18 AC 474 ms
139,248 KB
testcase_19 AC 468 ms
139,260 KB
testcase_20 AC 478 ms
139,324 KB
testcase_21 AC 463 ms
139,216 KB
testcase_22 AC 510 ms
141,056 KB
testcase_23 AC 508 ms
141,060 KB
testcase_24 AC 518 ms
141,312 KB
testcase_25 AC 490 ms
141,676 KB
testcase_26 AC 507 ms
141,184 KB
testcase_27 AC 606 ms
153,344 KB
testcase_28 AC 585 ms
152,824 KB
testcase_29 AC 601 ms
151,288 KB
testcase_30 AC 618 ms
153,344 KB
testcase_31 AC 612 ms
151,424 KB
testcase_32 AC 551 ms
152,960 KB
testcase_33 AC 552 ms
153,384 KB
testcase_34 AC 551 ms
153,088 KB
testcase_35 AC 605 ms
152,960 KB
testcase_36 AC 589 ms
153,572 KB
testcase_37 AC 609 ms
153,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
n = int(input())

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

q = int(input())
Q = [list(map(int,input().split())) for i in range(q)]

inf = 10**10
level = [inf]*n
level[0] = 1

nums = [0]*n
for i,(l,a) in enumerate(LA,1):
    level[i] = l
    e[a-1].append(i)
    nums[i] += 1


dist = [inf]*n
q = []
for i in range(n):
    if nums[i] == 0:
        q.append(i)
        dist[i] = level[i]

while q:
    now = q.pop()
    for nex in e[now]:
        nums[nex] -= 1
        if nums[nex] == 0:
            dist[nex] = max(dist[now],level[nex])
            q.append(nex)



techs = [inf]
for i in dist:
    if i != inf:
        techs.append(i)

techs.sort()

for t,x in Q:
    if t == 1:
        print(bisect.bisect_right(techs,x))
    else:
        ans = dist[x-1]
        if ans == inf:
            ans = -1
        print(ans)
0