結果

問題 No.2889 Rusk
ユーザー t98slidert98slider
提出日時 2024-09-14 18:32:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 679 bytes
コンパイル時間 2,306 ms
コンパイル使用メモリ 203,632 KB
実行使用メモリ 5,632 KB
最終ジャッジ日時 2024-09-14 18:32:55
合計ジャッジ時間 6,178 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 5 ms
5,376 KB
testcase_15 AC 13 ms
5,376 KB
testcase_16 AC 32 ms
5,376 KB
testcase_17 AC 10 ms
5,376 KB
testcase_18 AC 27 ms
5,376 KB
testcase_19 AC 51 ms
5,376 KB
testcase_20 AC 63 ms
5,376 KB
testcase_21 AC 51 ms
5,376 KB
testcase_22 AC 43 ms
5,376 KB
testcase_23 AC 35 ms
5,376 KB
testcase_24 AC 62 ms
5,376 KB
testcase_25 AC 35 ms
5,376 KB
testcase_26 AC 50 ms
5,376 KB
testcase_27 AC 63 ms
5,376 KB
testcase_28 AC 37 ms
5,376 KB
testcase_29 AC 38 ms
5,376 KB
testcase_30 AC 39 ms
5,376 KB
testcase_31 AC 63 ms
5,376 KB
testcase_32 AC 27 ms
5,376 KB
testcase_33 AC 10 ms
5,376 KB
testcase_34 AC 71 ms
5,504 KB
testcase_35 AC 71 ms
5,632 KB
testcase_36 AC 72 ms
5,504 KB
testcase_37 AC 72 ms
5,632 KB
testcase_38 AC 71 ms
5,632 KB
testcase_39 AC 34 ms
5,376 KB
testcase_40 AC 27 ms
5,376 KB
testcase_41 AC 36 ms
5,504 KB
testcase_42 AC 26 ms
5,376 KB
testcase_43 AC 13 ms
5,376 KB
testcase_44 AC 32 ms
5,376 KB
testcase_45 AC 25 ms
5,376 KB
testcase_46 AC 8 ms
5,376 KB
testcase_47 AC 14 ms
5,376 KB
testcase_48 AC 30 ms
5,376 KB
testcase_49 AC 2 ms
5,376 KB
testcase_50 AC 2 ms
5,376 KB
testcase_51 AC 2 ms
5,376 KB
testcase_52 AC 2 ms
5,376 KB
testcase_53 AC 2 ms
5,376 KB
testcase_54 AC 75 ms
5,504 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), c(n);
    cin >> a >> b >> c;
    array<long long, 6> dp{};
    for(int i = 0; i < n; i++){
        dp[0] += a[i];
        dp[1] = max(dp[1] + b[i], dp[0]);
        dp[2] = max(dp[2] + a[i], dp[1]);
        dp[3] = max(dp[3] + c[i], dp[1]);
        dp[4] = max(dp[4] + b[i], max(dp[2], dp[3]));
        dp[5] = max(dp[5] + a[i], dp[4]);
    }
    cout << *max_element(dp.begin(), dp.end()) << '\n';
}
0