結果

問題 No.2999 Long Long Friedrice
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-12-24 10:33:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 620 bytes
コンパイル時間 2,670 ms
コンパイル使用メモリ 210,376 KB
実行使用メモリ 844,664 KB
最終ジャッジ日時 2024-12-24 10:33:59
合計ジャッジ時間 13,699 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 AC 24 ms
32,000 KB
testcase_02 AC 23 ms
26,752 KB
testcase_03 AC 22 ms
26,752 KB
testcase_04 AC 24 ms
26,752 KB
testcase_05 AC 23 ms
26,752 KB
testcase_06 AC 1,459 ms
111,784 KB
testcase_07 AC 22 ms
26,752 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 48 ms
26,648 KB
testcase_11 AC 14 ms
26,620 KB
testcase_12 AC 12 ms
26,764 KB
testcase_13 AC 13 ms
26,740 KB
testcase_14 AC 13 ms
26,712 KB
testcase_15 AC 13 ms
26,652 KB
testcase_16 AC 13 ms
26,736 KB
testcase_17 AC 13 ms
26,788 KB
testcase_18 AC 13 ms
26,608 KB
testcase_19 AC 13 ms
26,660 KB
testcase_20 AC 13 ms
26,660 KB
testcase_21 AC 13 ms
26,728 KB
testcase_22 AC 13 ms
26,776 KB
testcase_23 AC 15 ms
26,648 KB
testcase_24 AC 14 ms
26,668 KB
testcase_25 AC 14 ms
26,708 KB
testcase_26 AC 13 ms
26,696 KB
testcase_27 AC 13 ms
26,728 KB
testcase_28 AC 14 ms
26,748 KB
testcase_29 AC 14 ms
26,612 KB
testcase_30 AC 14 ms
26,640 KB
testcase_31 AC 13 ms
26,664 KB
testcase_32 AC 15 ms
26,704 KB
testcase_33 AC 12 ms
26,796 KB
testcase_34 AC 14 ms
26,716 KB
testcase_35 AC 15 ms
26,488 KB
testcase_36 AC 14 ms
26,756 KB
testcase_37 AC 14 ms
26,676 KB
testcase_38 MLE -
権限があれば一括ダウンロードができます

ソースコード

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]) {
			dq.push_back(v);
			vis[v] = true;
		}
	}
	cout << ans << endl;
}
0