結果

問題 No.2325 Skill Tree
ユーザー m_99m_99
提出日時 2023-05-28 13:43:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 647 ms / 3,000 ms
コード長 1,134 bytes
コンパイル時間 4,965 ms
コンパイル使用メモリ 273,224 KB
実行使用メモリ 16,936 KB
最終ジャッジ日時 2024-06-08 04:02:19
合計ジャッジ時間 24,616 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 2 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 254 ms
5,376 KB
testcase_08 AC 183 ms
8,832 KB
testcase_09 AC 298 ms
7,040 KB
testcase_10 AC 228 ms
12,416 KB
testcase_11 AC 300 ms
9,728 KB
testcase_12 AC 554 ms
16,468 KB
testcase_13 AC 559 ms
16,484 KB
testcase_14 AC 563 ms
16,384 KB
testcase_15 AC 571 ms
16,512 KB
testcase_16 AC 554 ms
16,432 KB
testcase_17 AC 538 ms
16,512 KB
testcase_18 AC 539 ms
16,460 KB
testcase_19 AC 572 ms
16,384 KB
testcase_20 AC 560 ms
16,444 KB
testcase_21 AC 545 ms
16,432 KB
testcase_22 AC 562 ms
16,512 KB
testcase_23 AC 555 ms
16,384 KB
testcase_24 AC 557 ms
16,384 KB
testcase_25 AC 560 ms
16,512 KB
testcase_26 AC 568 ms
16,428 KB
testcase_27 AC 634 ms
16,580 KB
testcase_28 AC 647 ms
16,384 KB
testcase_29 AC 630 ms
16,384 KB
testcase_30 AC 629 ms
16,668 KB
testcase_31 AC 638 ms
16,640 KB
testcase_32 AC 591 ms
16,936 KB
testcase_33 AC 597 ms
16,512 KB
testcase_34 AC 588 ms
16,640 KB
testcase_35 AC 620 ms
16,676 KB
testcase_36 AC 622 ms
16,928 KB
testcase_37 AC 629 ms
16,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 4000000000000000001


int main(){
	
	int n;
	cin>>n;
	vector E(n,vector<pair<int,long long>>());
	rep(i,n-1){
		int a,b;
		cin>>a>>b;
		b--;
		E[b].emplace_back(i+1,a);
	}
	
	vector<long long> d(n,Inf64);
	d[0] = 0;
	priority_queue<pair<long long,int>,vector<pair<long long,int>>,greater<pair<long long,int>>> Q;
	Q.emplace(0,0);
	while(Q.size()>0){
		long long D = Q.top().first;
		int u = Q.top().second;
		Q.pop();
		if(d[u]!=D)continue;
		rep(i,E[u].size()){
			int v = E[u][i].first;
			long long nD = max(D,(long long)E[u][i].second);
			if(d[v]>nD){
				d[v] = nD;
				Q.emplace(nD,v);
			}
		}
	}

	vector<long long> dd = d;
	sort(dd.begin(),dd.end());
	int q;
	cin>>q;
	rep(_,q){
		int t,x;
		cin>>t>>x;
		if(t==1){
			cout<<distance(dd.begin(),upper_bound(dd.begin(),dd.end(),x))<<endl;
		}
		else{
			long long ans = d[x-1];
			if(ans==Inf64)ans = -1;
			cout<<ans<<endl;
		}
	}
	
	return 0;
}
0