結果

問題 No.2889 Rusk
ユーザー RubikunRubikun
提出日時 2024-09-13 21:30:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 2,171 bytes
コンパイル時間 2,368 ms
コンパイル使用メモリ 204,264 KB
実行使用メモリ 29,184 KB
最終ジャッジ日時 2024-09-13 21:30:33
合計ジャッジ時間 7,360 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
24,448 KB
testcase_01 AC 17 ms
24,576 KB
testcase_02 AC 16 ms
24,448 KB
testcase_03 AC 18 ms
24,448 KB
testcase_04 AC 17 ms
24,576 KB
testcase_05 AC 16 ms
24,448 KB
testcase_06 AC 17 ms
24,448 KB
testcase_07 AC 17 ms
24,448 KB
testcase_08 AC 17 ms
24,448 KB
testcase_09 AC 17 ms
24,448 KB
testcase_10 AC 16 ms
24,576 KB
testcase_11 AC 17 ms
24,448 KB
testcase_12 AC 16 ms
24,576 KB
testcase_13 AC 16 ms
24,448 KB
testcase_14 AC 20 ms
24,576 KB
testcase_15 AC 31 ms
25,088 KB
testcase_16 AC 54 ms
26,240 KB
testcase_17 AC 27 ms
24,832 KB
testcase_18 AC 48 ms
25,984 KB
testcase_19 AC 76 ms
27,520 KB
testcase_20 AC 91 ms
28,160 KB
testcase_21 AC 76 ms
27,520 KB
testcase_22 AC 67 ms
26,880 KB
testcase_23 AC 57 ms
26,496 KB
testcase_24 AC 89 ms
28,160 KB
testcase_25 AC 55 ms
26,496 KB
testcase_26 AC 75 ms
27,264 KB
testcase_27 AC 91 ms
28,416 KB
testcase_28 AC 60 ms
26,880 KB
testcase_29 AC 63 ms
26,624 KB
testcase_30 AC 63 ms
26,752 KB
testcase_31 AC 92 ms
28,160 KB
testcase_32 AC 49 ms
25,984 KB
testcase_33 AC 26 ms
24,832 KB
testcase_34 AC 105 ms
29,056 KB
testcase_35 AC 106 ms
29,184 KB
testcase_36 AC 104 ms
29,056 KB
testcase_37 AC 104 ms
29,056 KB
testcase_38 AC 105 ms
29,056 KB
testcase_39 AC 67 ms
28,544 KB
testcase_40 AC 55 ms
27,520 KB
testcase_41 AC 69 ms
28,672 KB
testcase_42 AC 52 ms
27,392 KB
testcase_43 AC 34 ms
25,728 KB
testcase_44 AC 63 ms
28,288 KB
testcase_45 AC 53 ms
27,392 KB
testcase_46 AC 26 ms
25,216 KB
testcase_47 AC 35 ms
25,856 KB
testcase_48 AC 59 ms
27,904 KB
testcase_49 AC 17 ms
24,576 KB
testcase_50 AC 16 ms
24,448 KB
testcase_51 AC 17 ms
24,448 KB
testcase_52 AC 17 ms
24,576 KB
testcase_53 AC 17 ms
24,576 KB
testcase_54 AC 105 ms
29,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return true; } return false; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return true; } return false; }
#define vi vector<int>
#define vl vector<ll>
#define vii vector<pair<int,int>>
#define vll vector<pair<ll,ll>>
#define vvi vector<vector<int>>
#define vvl vector<vector<ll>>
#define vvii vector<vector<pair<int,int>>>
#define vvll vector<vector<pair<ll,ll>>>
#define vst vector<string>
#define pii pair<int,int>
#define pll pair<ll,ll>
#define pb push_back
#define all(x) (x).begin(),(x).end()
#define mkunique(x) sort(all(x));(x).erase(unique(all(x)),(x).end())
#define fi first
#define se second
#define mp make_pair
#define si(x) int(x.size())
const int mod=998244353,MAX=300005,INF=15<<26;

ll dp[MAX][3][3];

int main(){
    
    std::ifstream in("text.txt");
    std::cin.rdbuf(in.rdbuf());
    cin.tie(0);
    ios::sync_with_stdio(false);
    
    ll N;cin>>N;
    vl 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];
    }
    
    for(int i=0;i<MAX;i++){
        for(int j=0;j<3;j++) for(int k=0;k<3;k++) dp[i][j][k]=-INF;
    }
    
    dp[0][0][0]=0;
    
    for(int i=0;i<N;i++){
        for(int j=0;j<3;j++){
            for(int k=0;k<3;k++){
                if(dp[i][j][k]<0) continue;
                //cout<<dp[i][j][k]<<" "<<i<<" "<<j<<" "<<k<<endl;
                for(int a=j;a<3;a++){
                    for(int b=k;b<3;b++){
                        int S=0;
                        if(a==1) S|=1;
                        if(b==1) S|=2;
                        
                        if(S==3) chmax(dp[i+1][a][b],dp[i][j][k]+C[i]);
                        if(S==1||S==2) chmax(dp[i+1][a][b],dp[i][j][k]+B[i]);
                        if(S==0) chmax(dp[i+1][a][b],dp[i][j][k]+A[i]);
                    }
                }
            }
        }
    }
    
    ll ans=-1;
    
    for(int j=0;j<3;j++) for(int k=0;k<3;k++) chmax(ans,dp[N][j][k]);
    
    cout<<ans<<endl;
}


0