結果

問題 No.2999 Long Long Friedrice
ユーザー daiotadaiota
提出日時 2024-12-24 00:49:27
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 659 bytes
コンパイル時間 1,687 ms
コンパイル使用メモリ 169,092 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-12-24 00:49:32
合計ジャッジ時間 4,033 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 RE -
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 3 ms
6,816 KB
testcase_08 AC 3 ms
6,816 KB
testcase_09 RE -
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 2 ms
6,820 KB
testcase_13 AC 1 ms
6,820 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 2 ms
6,816 KB
testcase_18 AC 2 ms
6,820 KB
testcase_19 AC 2 ms
6,816 KB
testcase_20 AC 2 ms
6,816 KB
testcase_21 AC 2 ms
6,816 KB
testcase_22 AC 1 ms
6,816 KB
testcase_23 AC 2 ms
6,816 KB
testcase_24 RE -
testcase_25 AC 2 ms
6,820 KB
testcase_26 AC 1 ms
6,820 KB
testcase_27 AC 2 ms
6,820 KB
testcase_28 AC 2 ms
6,816 KB
testcase_29 AC 1 ms
6,820 KB
testcase_30 AC 2 ms
6,816 KB
testcase_31 AC 2 ms
6,816 KB
testcase_32 AC 2 ms
6,816 KB
testcase_33 RE -
testcase_34 AC 2 ms
6,816 KB
testcase_35 RE -
testcase_36 AC 2 ms
6,816 KB
testcase_37 AC 2 ms
6,820 KB
testcase_38 AC 2 ms
6,820 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];
vector<ll> g[2010];
ll T=0;

void dfs(ll x){


	T=max(T,x);

	if(g[x].size()==0) return;


	bool f=false;
	for(ll i=0;i<(ll)g[x].size();i++){
		if(g[x][i]!=-1){
			f=true;
			dfs(x+g[x][i]);
			g[x][i]=-1;

		}
	}

	if(!f) return;


}






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(b[i]);


	dfs(1);


	cout << T << endl;





	return 0;
}
0