結果

問題 No.2889 Rusk
ユーザー 👑 seekworserseekworser
提出日時 2024-07-03 14:37:53
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 282 ms / 2,000 ms
コード長 1,156 bytes
コンパイル時間 3,368 ms
コンパイル使用メモリ 247,460 KB
実行使用メモリ 7,936 KB
最終ジャッジ日時 2024-07-05 21:12:11
合計ジャッジ時間 12,385 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 3 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 46 ms
5,376 KB
testcase_16 AC 110 ms
5,376 KB
testcase_17 AC 32 ms
5,376 KB
testcase_18 AC 94 ms
5,376 KB
testcase_19 AC 180 ms
6,400 KB
testcase_20 AC 219 ms
7,168 KB
testcase_21 AC 178 ms
6,400 KB
testcase_22 AC 154 ms
5,888 KB
testcase_23 AC 122 ms
5,376 KB
testcase_24 AC 219 ms
7,040 KB
testcase_25 AC 119 ms
5,504 KB
testcase_26 AC 174 ms
6,272 KB
testcase_27 AC 226 ms
7,296 KB
testcase_28 AC 134 ms
5,632 KB
testcase_29 AC 139 ms
5,504 KB
testcase_30 AC 138 ms
5,632 KB
testcase_31 AC 226 ms
7,168 KB
testcase_32 AC 96 ms
5,376 KB
testcase_33 AC 28 ms
5,376 KB
testcase_34 AC 263 ms
7,936 KB
testcase_35 AC 263 ms
7,808 KB
testcase_36 AC 263 ms
7,936 KB
testcase_37 AC 265 ms
7,808 KB
testcase_38 AC 262 ms
7,936 KB
testcase_39 AC 105 ms
7,424 KB
testcase_40 AC 81 ms
6,528 KB
testcase_41 AC 108 ms
7,552 KB
testcase_42 AC 78 ms
6,272 KB
testcase_43 AC 37 ms
5,376 KB
testcase_44 AC 100 ms
7,168 KB
testcase_45 AC 75 ms
6,272 KB
testcase_46 AC 22 ms
5,376 KB
testcase_47 AC 41 ms
5,376 KB
testcase_48 AC 89 ms
6,784 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 282 ms
7,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const ll INF = 1LL << 60;

int main() {
    ll n; cin >> n;
    vector<ll> a(n), b(n), c(n);
    for (size_t i=0; i<n; i++) cin >> a[i];
    for (size_t i=0; i<n; i++) cin >> b[i];
    for (size_t i=0; i<n; i++) cin >> c[i];
    vector<ll> dp(9, -INF);
    dp[0] = 0;
    for (size_t i=0; i<n; i++) {
        vector<ll> dpn(9, -INF);
        for (size_t j=0; j<9; j++) {
            if (dp[j] == -INF) continue;
            ll t1 = j / 3;
            ll t2 = j % 3;
            for (ll add1=0; add1<2; add1++) for (ll add2=0; add2<2; add2++) {
                if (t1+add1 > 2 || t2+add2 > 2) continue;
                ll t1n = t1 + add1;
                ll t2n = t2 + add2;
                ll taste;
                if (t1n == 1 && t2n == 1) taste = c[i];
                else if (t1n != 1 && t2n != 1) taste = a[i];
                else taste = b[i];
                dpn[t1n*3+t2n] = max(dpn[t1n*3+t2n], dp[j] + taste);
            }
        }
        swap(dp, dpn);
    }
    ll ans = -INF;
    for (size_t i=0; i<9; i++) ans = max(ans, dp[i]);
    cout << ans << endl;
    return 0;
}
0