結果

問題 No.2889 Rusk
ユーザー GOTKAKOGOTKAKO
提出日時 2024-09-13 22:54:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 1,629 bytes
コンパイル時間 2,277 ms
コンパイル使用メモリ 209,932 KB
実行使用メモリ 7,936 KB
最終ジャッジ日時 2024-09-13 22:54:28
合計ジャッジ時間 6,744 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,948 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 5 ms
6,944 KB
testcase_15 AC 18 ms
6,940 KB
testcase_16 AC 44 ms
6,944 KB
testcase_17 AC 14 ms
6,944 KB
testcase_18 AC 38 ms
6,940 KB
testcase_19 AC 71 ms
6,940 KB
testcase_20 AC 88 ms
7,040 KB
testcase_21 AC 72 ms
6,940 KB
testcase_22 AC 61 ms
6,944 KB
testcase_23 AC 49 ms
6,940 KB
testcase_24 AC 87 ms
7,168 KB
testcase_25 AC 48 ms
6,944 KB
testcase_26 AC 70 ms
6,940 KB
testcase_27 AC 89 ms
7,296 KB
testcase_28 AC 53 ms
6,940 KB
testcase_29 AC 55 ms
6,940 KB
testcase_30 AC 55 ms
6,944 KB
testcase_31 AC 88 ms
7,168 KB
testcase_32 AC 40 ms
6,940 KB
testcase_33 AC 12 ms
6,940 KB
testcase_34 AC 104 ms
7,936 KB
testcase_35 AC 105 ms
7,936 KB
testcase_36 AC 104 ms
7,936 KB
testcase_37 AC 104 ms
7,808 KB
testcase_38 AC 103 ms
7,936 KB
testcase_39 AC 65 ms
7,552 KB
testcase_40 AC 51 ms
6,944 KB
testcase_41 AC 68 ms
7,552 KB
testcase_42 AC 48 ms
6,944 KB
testcase_43 AC 23 ms
6,940 KB
testcase_44 AC 61 ms
7,040 KB
testcase_45 AC 47 ms
6,944 KB
testcase_46 AC 15 ms
6,944 KB
testcase_47 AC 25 ms
6,944 KB
testcase_48 AC 55 ms
6,944 KB
testcase_49 AC 2 ms
6,940 KB
testcase_50 AC 2 ms
6,940 KB
testcase_51 AC 2 ms
6,940 KB
testcase_52 AC 2 ms
6,944 KB
testcase_53 AC 2 ms
6,940 KB
testcase_54 AC 107 ms
7,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    int N; cin >> N;
    vector<long long> A(N),B = A,C = A;
    for(auto &a : A) cin >> a;
    for(auto &a : B) cin >> a;
    for(auto &a : C) cin >> a;

    long long inf = 1e18;
    vector<vector<long long>> dp(3,vector<long long>(3,-inf));
    dp.at(0).at(0) = 0;
    auto chmax = [&](auto &a,auto b) -> void {a = max(a,b);};
    for(int i=0; i<N; i++){
        long long a = A.at(i),b = B.at(i),c = C.at(i);
        vector<vector<long long>> next(3,vector<long long>(3,-inf));
        for(int i=0; i<3; i++){
            for(int k=0; k<3; k++){
                if(dp.at(i).at(k) == inf) continue;
                if(i == 0){
                    chmax(next.at(i).at(k),dp.at(i).at(k)+a);
                    if(k < 1) chmax(next.at(i+2).at(k+2),dp.at(i).at(k)+c);
                    if(k < 2) chmax(next.at(i+1).at(k+1),dp.at(i).at(k)+b);
                }
                else if(i == 1){
                    chmax(next.at(1).at(k),dp.at(i).at(k)+b);
                    chmax(next.at(0).at(k),dp.at(i).at(k)+a);
                    if(k < 2) chmax(next.at(2).at(k+1),dp.at(i).at(k)+c);
                }
                else{
                    chmax(next.at(2).at(k),dp.at(i).at(k)+c);
                    chmax(next.at(1).at(k),dp.at(i).at(k)+b);
                    chmax(next.at(0).at(k),dp.at(i).at(k)+a);
                }
            }
        }
        swap(dp,next);
    }
    long long answer = 0;
    for(auto &h : dp) for(auto &w : h) answer = max(answer,w);
    cout << answer << endl;
}
0