結果

問題 No.2999 Long Long Friedrice
ユーザー friedricefriedrice
提出日時 2024-11-24 16:34:30
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 11 ms / 2,000 ms
コード長 672 bytes
コンパイル時間 5,004 ms
コンパイル使用メモリ 311,080 KB
実行使用メモリ 26,920 KB
最終ジャッジ日時 2024-12-23 23:30:16
合計ジャッジ時間 6,654 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
26,872 KB
testcase_01 AC 9 ms
26,780 KB
testcase_02 AC 9 ms
26,880 KB
testcase_03 AC 9 ms
26,880 KB
testcase_04 AC 9 ms
26,848 KB
testcase_05 AC 8 ms
26,880 KB
testcase_06 AC 10 ms
26,752 KB
testcase_07 AC 9 ms
26,884 KB
testcase_08 AC 9 ms
26,920 KB
testcase_09 AC 10 ms
26,880 KB
testcase_10 AC 8 ms
26,752 KB
testcase_11 AC 10 ms
26,752 KB
testcase_12 AC 9 ms
26,752 KB
testcase_13 AC 9 ms
26,752 KB
testcase_14 AC 10 ms
26,752 KB
testcase_15 AC 10 ms
26,864 KB
testcase_16 AC 9 ms
26,868 KB
testcase_17 AC 9 ms
26,752 KB
testcase_18 AC 8 ms
26,744 KB
testcase_19 AC 8 ms
26,752 KB
testcase_20 AC 9 ms
26,752 KB
testcase_21 AC 11 ms
26,720 KB
testcase_22 AC 9 ms
26,752 KB
testcase_23 AC 9 ms
26,880 KB
testcase_24 AC 9 ms
26,752 KB
testcase_25 AC 9 ms
26,880 KB
testcase_26 AC 8 ms
26,880 KB
testcase_27 AC 9 ms
26,752 KB
testcase_28 AC 8 ms
26,860 KB
testcase_29 AC 9 ms
26,720 KB
testcase_30 AC 10 ms
26,752 KB
testcase_31 AC 9 ms
26,832 KB
testcase_32 AC 9 ms
26,724 KB
testcase_33 AC 8 ms
26,856 KB
testcase_34 AC 10 ms
26,824 KB
testcase_35 AC 9 ms
26,872 KB
testcase_36 AC 10 ms
26,720 KB
testcase_37 AC 9 ms
26,840 KB
testcase_38 AC 9 ms
26,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using ll = long long;
using mint = atcoder::modint998244353;
using maxt = atcoder::modint1000000007;

int ans = 0;
vector<vector<int>> To(1000001, vector<int>(0, 0));
vector<bool> seen(1000001, false);
void dfs(int v) {
	ans = max(ans, v);
	seen.at(v) = true;
	for(int next_v : To.at(v)) {
		if(seen.at(next_v)) {
			continue;
		}
		dfs(next_v);
	}
}

int main() {
	int N;
	cin >> N;
	vector<int> A(N);
	for(int &o : A) {
		cin >> o;
	}
	vector<int> B(N);
	for(int &o : B) {
		cin >> o;
	}
	for(int i = 0; i < N; i++) {
		To.at(A.at(i)).push_back(A.at(i) + B.at(i));
	}
	dfs(1);
	cout << ans << endl;
}
0