結果

問題 No.2325 Skill Tree
ユーザー nikoro256nikoro256
提出日時 2023-05-28 14:22:35
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,095 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 81,944 KB
実行使用メモリ 148,496 KB
最終ジャッジ日時 2024-06-08 05:18:57
合計ジャッジ時間 67,318 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,544 KB
testcase_01 AC 42 ms
55,912 KB
testcase_02 AC 42 ms
54,264 KB
testcase_03 AC 41 ms
54,052 KB
testcase_04 AC 40 ms
55,380 KB
testcase_05 AC 41 ms
54,336 KB
testcase_06 AC 40 ms
55,916 KB
testcase_07 AC 625 ms
86,980 KB
testcase_08 AC 666 ms
106,424 KB
testcase_09 AC 817 ms
97,088 KB
testcase_10 AC 946 ms
126,408 KB
testcase_11 AC 1,012 ms
111,716 KB
testcase_12 AC 2,046 ms
147,724 KB
testcase_13 AC 2,027 ms
147,736 KB
testcase_14 AC 2,016 ms
147,728 KB
testcase_15 AC 2,025 ms
147,476 KB
testcase_16 AC 1,981 ms
147,736 KB
testcase_17 AC 1,385 ms
147,468 KB
testcase_18 AC 1,362 ms
148,240 KB
testcase_19 AC 1,399 ms
147,732 KB
testcase_20 AC 1,339 ms
147,468 KB
testcase_21 AC 1,325 ms
148,116 KB
testcase_22 AC 2,352 ms
148,108 KB
testcase_23 AC 2,448 ms
148,496 KB
testcase_24 AC 2,680 ms
147,348 KB
testcase_25 AC 2,674 ms
147,988 KB
testcase_26 AC 2,484 ms
147,728 KB
testcase_27 AC 2,700 ms
141,216 KB
testcase_28 AC 2,681 ms
141,212 KB
testcase_29 AC 2,667 ms
140,696 KB
testcase_30 AC 2,617 ms
140,320 KB
testcase_31 AC 2,656 ms
141,852 KB
testcase_32 AC 1,996 ms
140,824 KB
testcase_33 AC 2,042 ms
141,076 KB
testcase_34 AC 2,041 ms
139,936 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
N=int(input())
lis=[]
for i in range(N-1):
    L,A=map(int,input().split())
    lis.append([L,A,i+2])
lis.sort()
use=[False for _ in range(N+2)]
sets=[set() for _ in range(N+2)]
use[1]=True
nums=[-1 for _ in range(N+2)]
count=[0 for _ in range(N+2)]
from collections import deque
for l,a,ind in lis:
    if use[a]:
        i=ind-2
        use[ind]=True
        nums[ind]=l
        dq=deque()
        dq.append(ind)
        while len(dq)!=0:
            p=dq.popleft()
            for s in sets[p]:
                use[s]=True
                nums[s]=l
                dq.append(s)
    else:
        sets[a].add(ind)

import bisect
point=[0 for _ in range(len(lis)+1)]
for i in range(2,N+1):
    if nums[i]!=-1:
        point[bisect.bisect_left(lis,[nums[i]])]+=1
for i in range(1,len(point)):
    point[i]+=point[i-1]
point.append(0)
for i in range(len(point)):
    point[i]+=1
Q=int(input())
for _ in range(Q):
    q=list(map(int,input().split()))
    if q[0]==2:
        print(nums[q[1]])
    if q[0]==1:
        print(point[bisect.bisect_right(lis,[q[1],10**9])-1])
        pass
0