結果

問題 No.2889 Rusk
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-09-14 01:11:09
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 354 ms / 2,000 ms
コード長 1,269 bytes
コンパイル時間 3,188 ms
コンパイル使用メモリ 254,232 KB
実行使用メモリ 46,976 KB
最終ジャッジ日時 2024-09-14 01:11:21
合計ジャッジ時間 12,288 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 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,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 14 ms
6,940 KB
testcase_15 AC 53 ms
10,240 KB
testcase_16 AC 136 ms
21,376 KB
testcase_17 AC 39 ms
8,192 KB
testcase_18 AC 114 ms
18,432 KB
testcase_19 AC 219 ms
32,896 KB
testcase_20 AC 294 ms
39,728 KB
testcase_21 AC 221 ms
33,060 KB
testcase_22 AC 188 ms
28,788 KB
testcase_23 AC 148 ms
23,168 KB
testcase_24 AC 268 ms
39,328 KB
testcase_25 AC 146 ms
22,832 KB
testcase_26 AC 240 ms
32,180 KB
testcase_27 AC 276 ms
40,792 KB
testcase_28 AC 165 ms
25,216 KB
testcase_29 AC 171 ms
26,112 KB
testcase_30 AC 174 ms
25,856 KB
testcase_31 AC 274 ms
40,328 KB
testcase_32 AC 138 ms
19,072 KB
testcase_33 AC 33 ms
7,552 KB
testcase_34 AC 321 ms
46,976 KB
testcase_35 AC 324 ms
46,916 KB
testcase_36 AC 324 ms
46,944 KB
testcase_37 AC 354 ms
46,936 KB
testcase_38 AC 323 ms
46,920 KB
testcase_39 AC 160 ms
42,984 KB
testcase_40 AC 126 ms
34,016 KB
testcase_41 AC 168 ms
44,752 KB
testcase_42 AC 116 ms
31,808 KB
testcase_43 AC 55 ms
16,384 KB
testcase_44 AC 151 ms
40,480 KB
testcase_45 AC 115 ms
31,572 KB
testcase_46 AC 33 ms
11,008 KB
testcase_47 AC 60 ms
17,920 KB
testcase_48 AC 135 ms
36,504 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,940 KB
testcase_54 AC 343 ms
46,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using lint = long long;

int main() {
    int n;
    cin >> n;
    vector<lint> a(n), b(n), c(n);
    for (int i = 0; i < n; i++) {
        cin >> a[i];
    }
    for (int i = 0; i < n; i++) {
        cin >> b[i];
    }
    for (int i = 0; i < n; i++) {
        cin >> c[i];
    }
    vector<vector<vector<lint>>> dp(n + 1, vector<vector<lint>>(3, vector<lint>(3, -1)));
    dp[0][0][0] = 0;
    for (int i = 1; i <= n; i++) {
        for (int j = 0; j < 3; j++) {
            for (int k = 0; k < 3; k++) {
                for (int pj = max(0, j - 1); pj <= j; pj++) {
                    for (int pk = max(0, k - 1); pk <= k; pk++) {
                        lint add;
                        if (j == 1 || k == 1) {
                            add = ((j == 1 && k == 1) ? c[i - 1] : b[i - 1]);
                        } else {
                            add = a[i - 1];
                        }
                        dp[i][j][k] = max(dp[i][j][k], dp[i - 1][pj][pk] + add);
                    }
                }
            }
        }
    }
    lint ans = 0;
    for (int j = 0; j < 3; j++) {
        for (int k = 0; k < 3; k++) {
            ans = max(ans, dp[n][j][k]);
        }
    }
    cout << ans << endl;
}
0