結果

問題 No.2889 Rusk
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2024-10-02 12:15:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 1,205 bytes
コンパイル時間 2,169 ms
コンパイル使用メモリ 208,672 KB
実行使用メモリ 53,300 KB
最終ジャッジ日時 2024-10-02 12:15:50
合計ジャッジ時間 10,045 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,824 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 1 ms
6,816 KB
testcase_12 AC 1 ms
6,820 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 7 ms
6,820 KB
testcase_15 AC 24 ms
11,264 KB
testcase_16 AC 61 ms
24,064 KB
testcase_17 AC 18 ms
8,832 KB
testcase_18 AC 54 ms
20,736 KB
testcase_19 AC 99 ms
36,980 KB
testcase_20 AC 146 ms
44,772 KB
testcase_21 AC 104 ms
37,352 KB
testcase_22 AC 89 ms
32,344 KB
testcase_23 AC 70 ms
25,984 KB
testcase_24 AC 127 ms
44,428 KB
testcase_25 AC 69 ms
25,728 KB
testcase_26 AC 97 ms
36,192 KB
testcase_27 AC 135 ms
45,960 KB
testcase_28 AC 75 ms
28,416 KB
testcase_29 AC 79 ms
29,440 KB
testcase_30 AC 76 ms
28,972 KB
testcase_31 AC 128 ms
45,448 KB
testcase_32 AC 56 ms
21,376 KB
testcase_33 AC 16 ms
8,064 KB
testcase_34 AC 157 ms
53,264 KB
testcase_35 AC 144 ms
53,300 KB
testcase_36 AC 144 ms
53,232 KB
testcase_37 AC 146 ms
53,260 KB
testcase_38 AC 146 ms
53,232 KB
testcase_39 AC 104 ms
48,616 KB
testcase_40 AC 81 ms
38,484 KB
testcase_41 AC 110 ms
50,712 KB
testcase_42 AC 112 ms
35,920 KB
testcase_43 AC 38 ms
18,304 KB
testcase_44 AC 99 ms
45,616 KB
testcase_45 AC 82 ms
35,492 KB
testcase_46 AC 22 ms
12,032 KB
testcase_47 AC 42 ms
19,840 KB
testcase_48 AC 90 ms
41,380 KB
testcase_49 AC 1 ms
6,820 KB
testcase_50 AC 2 ms
6,820 KB
testcase_51 AC 2 ms
6,824 KB
testcase_52 AC 2 ms
6,820 KB
testcase_53 AC 2 ms
6,816 KB
testcase_54 AC 150 ms
53,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

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

    /*
       0 (焼く前) 1 (焼いている途中) 2 (焼いた後)
       dp(i, j, k) = i番目までで1番目のトースターの状態がj, 2~kのときの最大値
    */

    ll N, x;
    cin >> N;
    vector v(N+1, vector<ll>(3));
    for (int i=1; i<=N; i++) cin >> v[i][0];
    for (int i=1; i<=N; i++) cin >> v[i][1];
    for (int i=1; i<=N; i++) cin >> v[i][2];

    vector dp(N+1, vector(3, vector<ll>(3, -1e18)));
    dp[0][0][0] = 0;
    auto chmax=[&](ll &a, const ll &b){
        if (a < b) a = b;
    };

    for (int i=1; i<=N; i++){
        for (int j=0; j<3; j++){
            for (int k=0; k<3; k++){
                for (int l=j; l<=min(2, j+1); l++){
                    for (int r=k; r<=min(2, k+1); r++){
                        x = l%2+r%2;
                        chmax(dp[i][l][r], dp[i-1][j][k]+v[i][x]);
                    }
                }
            }
        }
    }

    ll ans=0;
    for (int i=0; i<3; i++){
        for (int j=0; j<3; j++) ans = max(ans, dp[N][i][j]);
    }

    cout << ans << endl;

    return 0;
}
0