結果

問題 No.2889 Rusk
ユーザー SnowBeenDidingSnowBeenDiding
提出日時 2024-09-13 21:49:28
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 273 ms / 2,000 ms
コード長 1,295 bytes
コンパイル時間 2,899 ms
コンパイル使用メモリ 245,268 KB
実行使用メモリ 22,268 KB
最終ジャッジ日時 2024-09-13 21:49:58
合計ジャッジ時間 10,057 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 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 11 ms
5,376 KB
testcase_15 AC 43 ms
6,528 KB
testcase_16 AC 108 ms
11,136 KB
testcase_17 AC 31 ms
5,632 KB
testcase_18 AC 91 ms
9,984 KB
testcase_19 AC 173 ms
16,128 KB
testcase_20 AC 212 ms
18,944 KB
testcase_21 AC 175 ms
16,256 KB
testcase_22 AC 147 ms
14,208 KB
testcase_23 AC 140 ms
11,984 KB
testcase_24 AC 210 ms
18,812 KB
testcase_25 AC 117 ms
11,848 KB
testcase_26 AC 168 ms
15,716 KB
testcase_27 AC 218 ms
19,492 KB
testcase_28 AC 129 ms
12,840 KB
testcase_29 AC 134 ms
13,184 KB
testcase_30 AC 132 ms
13,116 KB
testcase_31 AC 216 ms
19,200 KB
testcase_32 AC 95 ms
10,280 KB
testcase_33 AC 27 ms
5,376 KB
testcase_34 AC 252 ms
22,064 KB
testcase_35 AC 252 ms
22,240 KB
testcase_36 AC 252 ms
22,144 KB
testcase_37 AC 251 ms
22,124 KB
testcase_38 AC 252 ms
22,160 KB
testcase_39 AC 97 ms
20,448 KB
testcase_40 AC 75 ms
16,640 KB
testcase_41 AC 102 ms
21,248 KB
testcase_42 AC 71 ms
15,716 KB
testcase_43 AC 35 ms
9,072 KB
testcase_44 AC 91 ms
19,304 KB
testcase_45 AC 71 ms
15,600 KB
testcase_46 AC 22 ms
6,784 KB
testcase_47 AC 37 ms
9,576 KB
testcase_48 AC 86 ms
17,772 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 273 ms
22,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, a, b) for (ll i = (ll)(a); i < (ll)(b); i++)
using namespace std;

typedef long long ll;

template <typename T, typename S> bool chmax(T &a, S b) {
    if (a < b) {
        a = b;
        return 1;
    }
    return 0;
}

int main() {
    int n;
    cin >> n;
    ll a[3][n];
    rep(i, 0, n) cin >> a[0][i];
    rep(i, 0, n) cin >> a[1][i];
    rep(i, 0, n) cin >> a[2][i];
    ll dp[n + 1][3][3];
    rep(i, 0, n + 1) rep(j, 0, 3) rep(k, 0, 3) dp[i][j][k] = -1e18;
    dp[0][0][0] = 0;
    rep(i, 0, n) {
        rep(j, 0, 3) rep(k, 0, 3) {
            rep(nj, 0, 3) {
                if (nj <= j) {
                    chmax(dp[i + 1][nj][k], dp[i][j][k] + a[nj][i]);
                } else {
                    int ad = nj - j;
                    if (k + ad < 3) {
                        chmax(dp[i + 1][nj][k + ad], dp[i][j][k] + a[nj][i]);
                    }
                }
            }
        }
    }
    auto debug = [&]() {
        rep(i, 0, n + 1) {
            rep(j, 0, 3) {
                rep(k, 0, 3) cout << dp[i][j][k] << " ";
                cout << endl;
            }
            cout << endl;
        }
    };
    // debug();
    ll ans = 0;
    rep(j, 0, 3) rep(k, 0, 3) chmax(ans, dp[n][j][k]);
    cout << ans << endl;
}
0