結果

問題 No.2325 Skill Tree
ユーザー kotatsugamekotatsugame
提出日時 2023-05-28 13:43:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 620 ms / 3,000 ms
コード長 890 bytes
コンパイル時間 1,034 ms
コンパイル使用メモリ 84,280 KB
実行使用メモリ 15,232 KB
最終ジャッジ日時 2024-06-08 04:01:53
合計ジャッジ時間 20,530 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
9,600 KB
testcase_01 AC 4 ms
9,600 KB
testcase_02 AC 5 ms
9,600 KB
testcase_03 AC 4 ms
9,600 KB
testcase_04 AC 4 ms
9,600 KB
testcase_05 AC 4 ms
9,472 KB
testcase_06 AC 5 ms
9,600 KB
testcase_07 AC 262 ms
10,368 KB
testcase_08 AC 181 ms
11,784 KB
testcase_09 AC 292 ms
11,188 KB
testcase_10 AC 220 ms
13,184 KB
testcase_11 AC 296 ms
12,156 KB
testcase_12 AC 545 ms
14,976 KB
testcase_13 AC 539 ms
14,848 KB
testcase_14 AC 540 ms
14,976 KB
testcase_15 AC 542 ms
15,232 KB
testcase_16 AC 540 ms
14,976 KB
testcase_17 AC 541 ms
14,848 KB
testcase_18 AC 520 ms
14,848 KB
testcase_19 AC 530 ms
14,848 KB
testcase_20 AC 531 ms
14,976 KB
testcase_21 AC 536 ms
14,848 KB
testcase_22 AC 545 ms
14,848 KB
testcase_23 AC 543 ms
14,976 KB
testcase_24 AC 555 ms
14,976 KB
testcase_25 AC 553 ms
14,848 KB
testcase_26 AC 555 ms
14,848 KB
testcase_27 AC 604 ms
14,592 KB
testcase_28 AC 611 ms
14,464 KB
testcase_29 AC 606 ms
14,592 KB
testcase_30 AC 600 ms
14,464 KB
testcase_31 AC 615 ms
14,464 KB
testcase_32 AC 576 ms
14,336 KB
testcase_33 AC 572 ms
14,464 KB
testcase_34 AC 578 ms
14,520 KB
testcase_35 AC 620 ms
14,336 KB
testcase_36 AC 609 ms
14,336 KB
testcase_37 AC 603 ms
14,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<queue>
#include<algorithm>
#include<cassert>
using namespace std;
int N,Q;
vector<int>G[2<<17];
int L[2<<17];
bool vis[2<<17];
int main()
{
	cin>>N;
	for(int i=1;i<N;i++)
	{
		int A;
		cin>>L[i]>>A;
		G[A-1].push_back(i);
	}
	priority_queue<pair<int,int> >pq;
	pq.push(make_pair(0,0));
	while(!pq.empty())
	{
		int u=pq.top().second;
		int c=-pq.top().first;
		pq.pop();
		if(vis[u])continue;
		vis[u]=true;
		L[u]=max(L[u],c);
		for(int v:G[u])
		{
			assert(!vis[v]);
			pq.push(make_pair(-L[u],v));
		}
	}
	vector<int>Lv(N);
	for(int i=0;i<N;i++)
	{
		if(vis[i])Lv[i]=L[i];
		else Lv[i]=2e9;
	}
	sort(Lv.begin(),Lv.end());
	cin>>Q;
	for(;Q--;)
	{
		int op;cin>>op;
		if(op==1)
		{
			int x;cin>>x;
			cout<<upper_bound(Lv.begin(),Lv.end(),x)-Lv.begin()<<"\n";
		}
		else
		{
			int y;cin>>y;
			y--;
			cout<<(vis[y]?L[y]:-1)<<"\n";
		}
	}
}
0