結果

問題 No.2999 Long Long Friedrice
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-12-24 10:34:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 23 ms / 2,000 ms
コード長 656 bytes
コンパイル時間 4,217 ms
コンパイル使用メモリ 210,192 KB
実行使用メモリ 26,916 KB
最終ジャッジ日時 2024-12-24 10:34:21
合計ジャッジ時間 5,802 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
26,800 KB
testcase_01 AC 23 ms
26,812 KB
testcase_02 AC 12 ms
26,800 KB
testcase_03 AC 12 ms
26,840 KB
testcase_04 AC 12 ms
26,824 KB
testcase_05 AC 13 ms
26,844 KB
testcase_06 AC 12 ms
26,804 KB
testcase_07 AC 13 ms
26,892 KB
testcase_08 AC 13 ms
26,812 KB
testcase_09 AC 13 ms
26,820 KB
testcase_10 AC 13 ms
26,648 KB
testcase_11 AC 12 ms
26,916 KB
testcase_12 AC 12 ms
26,836 KB
testcase_13 AC 13 ms
26,848 KB
testcase_14 AC 12 ms
26,864 KB
testcase_15 AC 13 ms
26,712 KB
testcase_16 AC 13 ms
26,860 KB
testcase_17 AC 12 ms
26,796 KB
testcase_18 AC 13 ms
26,612 KB
testcase_19 AC 11 ms
26,784 KB
testcase_20 AC 12 ms
26,612 KB
testcase_21 AC 11 ms
26,808 KB
testcase_22 AC 12 ms
26,640 KB
testcase_23 AC 12 ms
26,676 KB
testcase_24 AC 12 ms
26,704 KB
testcase_25 AC 12 ms
26,680 KB
testcase_26 AC 12 ms
26,768 KB
testcase_27 AC 12 ms
26,780 KB
testcase_28 AC 11 ms
26,844 KB
testcase_29 AC 12 ms
26,640 KB
testcase_30 AC 11 ms
26,732 KB
testcase_31 AC 12 ms
26,680 KB
testcase_32 AC 13 ms
26,604 KB
testcase_33 AC 11 ms
26,756 KB
testcase_34 AC 12 ms
26,736 KB
testcase_35 AC 11 ms
26,680 KB
testcase_36 AC 12 ms
26,796 KB
testcase_37 AC 12 ms
26,824 KB
testcase_38 AC 12 ms
26,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

void fast_io() {
	ios::sync_with_stdio(false);
	std::cin.tie(nullptr);
}

int main() {
	fast_io();
	int n;
	cin >> n;
	vector<int> a(n), b(n);
	for (int i = 0; i < n; i++) {
		cin >> a[i];
	}
	const int M = 1e6 + 1;
	vector<vector<int>> g(M);
	for (int i = 0; i < n; i++) {
		cin >> b[i];
		g[a[i]].push_back(a[i] + b[i]);
	}
	int ans = 1;
	deque<int> dq{1};
	vector<bool> vis(M);
	vis[1] = true;
	while (!dq.empty()) {
		int u = dq.front();
		dq.pop_front();
		ans = max(ans, u);
		for (int v : g[u]) {
			if (vis[v]) {
				continue;
			}
			dq.push_back(v);
			vis[v] = true;
		}
	}
	cout << ans << endl;
}
0