結果

問題 No.2325 Skill Tree
ユーザー k82bk82b
提出日時 2023-05-28 14:59:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 407 ms / 3,000 ms
コード長 873 bytes
コンパイル時間 2,400 ms
コンパイル使用メモリ 214,012 KB
実行使用メモリ 18,432 KB
最終ジャッジ日時 2024-06-08 06:40:56
合計ジャッジ時間 16,741 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 192 ms
5,376 KB
testcase_08 AC 113 ms
9,472 KB
testcase_09 AC 206 ms
7,552 KB
testcase_10 AC 126 ms
13,824 KB
testcase_11 AC 190 ms
10,752 KB
testcase_12 AC 363 ms
18,432 KB
testcase_13 AC 362 ms
18,432 KB
testcase_14 AC 375 ms
18,432 KB
testcase_15 AC 367 ms
18,432 KB
testcase_16 AC 359 ms
18,432 KB
testcase_17 AC 355 ms
18,304 KB
testcase_18 AC 358 ms
18,432 KB
testcase_19 AC 374 ms
18,432 KB
testcase_20 AC 367 ms
18,432 KB
testcase_21 AC 370 ms
18,304 KB
testcase_22 AC 361 ms
18,432 KB
testcase_23 AC 352 ms
18,432 KB
testcase_24 AC 364 ms
18,304 KB
testcase_25 AC 354 ms
18,432 KB
testcase_26 AC 360 ms
18,432 KB
testcase_27 AC 407 ms
18,048 KB
testcase_28 AC 397 ms
18,048 KB
testcase_29 AC 402 ms
18,048 KB
testcase_30 AC 382 ms
18,048 KB
testcase_31 AC 397 ms
17,920 KB
testcase_32 AC 378 ms
18,048 KB
testcase_33 AC 390 ms
17,920 KB
testcase_34 AC 371 ms
18,048 KB
testcase_35 AC 390 ms
18,048 KB
testcase_36 AC 387 ms
17,920 KB
testcase_37 AC 387 ms
18,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define int long long

void solve();

signed main(){
	cin.tie(nullptr)->sync_with_stdio(false);
	cout<<fixed<<setprecision(15);

	int T=1;

	//cin>>T;
	
	while(T--)solve();

	return 0;
}

void solve(){
	int N;cin>>N;
	vector<int>L(N),A(N);
	vector<vector<int>>G(N);
	for(int i=0;i<N-1;++i){
		cin>>L[i]>>A[i];
		A[i]--;
		G[A[i]].push_back(i+1);
	}
	queue<int>que;
	vector<int>e(N,-1);
	vector<int>c(N,2e9);
	que.push(0);
	e[0]=1;
	c[0]=1;
	while(!que.empty()){
		int u=que.front();que.pop();
		for(int v:G[u])if(e[v]==-1){
			e[v]=max(e[u],L[v-1]);
			c[v]=e[v];
			que.push(v);
		}
	}
	sort(c.begin(),c.end());
	int Q;cin>>Q;
	while(Q--){
		int type;cin>>type;
		if(type==1){
			int x;cin>>x;
			cout<<upper_bound(c.begin(),c.end(),x)-c.begin()<<endl;
		}
		if(type==2){
			int y;cin>>y;
			y--;
			cout<<e[y]<<endl;
		}
	}
}
0