結果

問題 No.2999 Long Long Friedrice
ユーザー daiotadaiota
提出日時 2024-12-24 02:02:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 599 bytes
コンパイル時間 1,970 ms
コンパイル使用メモリ 168,776 KB
実行使用メモリ 144,256 KB
最終ジャッジ日時 2024-12-24 02:02:23
合計ジャッジ時間 4,988 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
144,080 KB
testcase_01 AC 92 ms
144,036 KB
testcase_02 AC 138 ms
144,128 KB
testcase_03 AC 69 ms
144,128 KB
testcase_04 AC 52 ms
144,248 KB
testcase_05 AC 50 ms
144,128 KB
testcase_06 AC 52 ms
144,000 KB
testcase_07 AC 53 ms
144,256 KB
testcase_08 AC 52 ms
144,152 KB
testcase_09 AC 106 ms
144,128 KB
testcase_10 AC 51 ms
144,000 KB
testcase_11 AC 50 ms
144,000 KB
testcase_12 AC 50 ms
144,000 KB
testcase_13 AC 52 ms
144,128 KB
testcase_14 AC 51 ms
144,128 KB
testcase_15 AC 54 ms
144,128 KB
testcase_16 AC 52 ms
144,128 KB
testcase_17 AC 49 ms
144,128 KB
testcase_18 AC 50 ms
144,128 KB
testcase_19 AC 51 ms
144,000 KB
testcase_20 AC 51 ms
144,128 KB
testcase_21 AC 53 ms
144,000 KB
testcase_22 AC 50 ms
144,000 KB
testcase_23 AC 51 ms
144,000 KB
testcase_24 AC 53 ms
144,128 KB
testcase_25 AC 53 ms
144,128 KB
testcase_26 AC 52 ms
143,872 KB
testcase_27 AC 72 ms
144,256 KB
testcase_28 AC 52 ms
144,128 KB
testcase_29 AC 51 ms
144,128 KB
testcase_30 AC 51 ms
144,000 KB
testcase_31 AC 51 ms
144,256 KB
testcase_32 AC 52 ms
144,000 KB
testcase_33 AC 51 ms
144,128 KB
testcase_34 AC 51 ms
144,000 KB
testcase_35 AC 52 ms
144,000 KB
testcase_36 AC 51 ms
144,128 KB
testcase_37 AC 53 ms
144,128 KB
testcase_38 AC 52 ms
144,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

typedef long long ll;
typedef pair<ll,ll> P;
#define REP(i,n) for(ll i=0;i<ll(n);i++)




ll a[2010],b[2010];
ll v[6000010];
vector<ll> g[6000010];
ll T=1;

void dfs(ll x){

	v[x]=1;
	T=max(T,x);

	for(ll i=0;i<(ll)g[x].size();i++){
		if(v[g[x][i]]==0){
			dfs(g[x][i]);
		}
	}



}




int main(void){
	cin.tie(nullptr);  ios_base::sync_with_stdio(false);
	ll i,j;


	ll N;
	cin >> N;

	for(i=1;i<=N;i++) cin >> a[i];
	for(i=1;i<=N;i++) cin >> b[i];

	for(i=1;i<=N;i++) g[a[i]].push_back(a[i]+b[i]);


	dfs(1);


	cout << T << endl;




	return 0;
}
0