結果

問題 No.2999 Long Long Friedrice
ユーザー t98slidert98slider
提出日時 2024-12-24 00:04:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 8 ms / 2,000 ms
コード長 797 bytes
コンパイル時間 2,517 ms
コンパイル使用メモリ 209,640 KB
実行使用メモリ 15,180 KB
最終ジャッジ日時 2024-12-24 00:04:14
合計ジャッジ時間 3,137 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
14,856 KB
testcase_01 AC 6 ms
15,044 KB
testcase_02 AC 5 ms
14,828 KB
testcase_03 AC 6 ms
14,912 KB
testcase_04 AC 6 ms
14,908 KB
testcase_05 AC 6 ms
14,936 KB
testcase_06 AC 5 ms
15,112 KB
testcase_07 AC 7 ms
14,908 KB
testcase_08 AC 5 ms
14,916 KB
testcase_09 AC 6 ms
15,180 KB
testcase_10 AC 5 ms
15,088 KB
testcase_11 AC 5 ms
15,008 KB
testcase_12 AC 5 ms
14,984 KB
testcase_13 AC 5 ms
14,908 KB
testcase_14 AC 5 ms
15,060 KB
testcase_15 AC 5 ms
14,864 KB
testcase_16 AC 8 ms
14,996 KB
testcase_17 AC 6 ms
15,000 KB
testcase_18 AC 5 ms
14,824 KB
testcase_19 AC 6 ms
14,896 KB
testcase_20 AC 5 ms
15,000 KB
testcase_21 AC 5 ms
14,832 KB
testcase_22 AC 6 ms
14,836 KB
testcase_23 AC 4 ms
14,984 KB
testcase_24 AC 4 ms
14,900 KB
testcase_25 AC 5 ms
14,836 KB
testcase_26 AC 4 ms
14,892 KB
testcase_27 AC 5 ms
15,100 KB
testcase_28 AC 5 ms
14,832 KB
testcase_29 AC 5 ms
15,044 KB
testcase_30 AC 6 ms
14,832 KB
testcase_31 AC 5 ms
14,924 KB
testcase_32 AC 6 ms
14,972 KB
testcase_33 AC 7 ms
14,960 KB
testcase_34 AC 5 ms
14,992 KB
testcase_35 AC 6 ms
14,972 KB
testcase_36 AC 5 ms
14,860 KB
testcase_37 AC 5 ms
14,988 KB
testcase_38 AC 6 ms
14,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

template<class T> istream& operator >> (istream& is, vector<T>& vec) {
    for(T& x : vec) is >> x;
    return is;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n;
    cin >> n;
    vector<int> a(n), b(n);
    cin >> a >> b;
    vector<vector<int>> g(500001);
    vector<bool> used(500001);
    for(int i = 0; i < n; i++){
        g[a[i]].emplace_back(a[i] + b[i]);
    }
    queue<int> que;
    que.emplace(1);
    int ans = 1;
    while(!que.empty()){
        int v = que.front();
        que.pop();
        for(auto &&u : g[v]){
            ans = max(ans, u);
            if(u <= 500000 && !used[u]){
                used[u] = true;
                que.emplace(u);
            }
        }
    }
    cout << ans << '\n';
}
0