結果

問題 No.2889 Rusk
ユーザー tottoripapertottoripaper
提出日時 2024-09-13 22:29:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 1,133 bytes
コンパイル時間 2,306 ms
コンパイル使用メモリ 207,972 KB
実行使用メモリ 28,288 KB
最終ジャッジ日時 2024-09-13 22:29:40
合計ジャッジ時間 7,558 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 7 ms
6,940 KB
testcase_15 AC 24 ms
7,296 KB
testcase_16 AC 59 ms
13,568 KB
testcase_17 AC 18 ms
6,940 KB
testcase_18 AC 50 ms
11,904 KB
testcase_19 AC 94 ms
20,064 KB
testcase_20 AC 115 ms
24,120 KB
testcase_21 AC 95 ms
20,352 KB
testcase_22 AC 81 ms
17,676 KB
testcase_23 AC 65 ms
14,592 KB
testcase_24 AC 114 ms
23,828 KB
testcase_25 AC 63 ms
14,464 KB
testcase_26 AC 92 ms
19,712 KB
testcase_27 AC 120 ms
24,688 KB
testcase_28 AC 71 ms
15,616 KB
testcase_29 AC 74 ms
16,256 KB
testcase_30 AC 73 ms
16,000 KB
testcase_31 AC 117 ms
24,384 KB
testcase_32 AC 51 ms
12,288 KB
testcase_33 AC 15 ms
6,940 KB
testcase_34 AC 137 ms
28,088 KB
testcase_35 AC 137 ms
28,180 KB
testcase_36 AC 138 ms
28,288 KB
testcase_37 AC 138 ms
28,184 KB
testcase_38 AC 138 ms
28,076 KB
testcase_39 AC 94 ms
25,940 KB
testcase_40 AC 73 ms
20,864 KB
testcase_41 AC 96 ms
26,952 KB
testcase_42 AC 68 ms
19,456 KB
testcase_43 AC 32 ms
10,624 KB
testcase_44 AC 87 ms
24,444 KB
testcase_45 AC 67 ms
19,328 KB
testcase_46 AC 20 ms
7,680 KB
testcase_47 AC 36 ms
11,520 KB
testcase_48 AC 79 ms
22,144 KB
testcase_49 AC 2 ms
6,944 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,944 KB
testcase_54 AC 143 ms
28,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using ll = std::int64_t;

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

    int N;
    std::cin >> N;

    std::vector<ll> A(N), B(N), C(N);
    for(int i=0;i<N;i++){
        std::cin >> A[i];
    }
    for(int i=0;i<N;i++){
        std::cin >> B[i];
    }
    for(int i=0;i<N;i++){
        std::cin >> C[i];
    }

    auto trans = [](int j, int k){
        return j % 3 <= k % 3 && j / 3 <= k / 3;
    };

    std::vector dp(N + 1, std::vector<ll>(9, 0));
    dp[0][0] = 0;
    for(int i=0;i<N;i++){
        for(int j=0;j<9;j++){
            for(int k=0;k<9;k++){
                if(!trans(j, k)){continue;}

                ll v = 0;
                if(k % 3 == 1 && k / 3 == 1){
                    v += C[i];
                }else if(k % 3 == 1 || k / 3 == 1){
                    v += B[i];
                }else{
                    v += A[i];
                }

                dp[i + 1][k] = std::max(dp[i + 1][k], dp[i][j] + v);
            }
        }
    }

    ll res = *std::max_element(std::begin(dp[N]), std::end(dp[N]));
    std::cout << res << std::endl;
}
0