結果

問題 No.2889 Rusk
ユーザー FplusFplusFFplusFplusF
提出日時 2024-09-14 16:57:00
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 1,481 bytes
コンパイル時間 3,193 ms
コンパイル使用メモリ 252,488 KB
実行使用メモリ 47,032 KB
最終ジャッジ日時 2024-09-14 16:57:11
合計ジャッジ時間 10,633 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 3 ms
5,248 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 11 ms
5,376 KB
testcase_15 AC 26 ms
10,328 KB
testcase_16 AC 64 ms
21,380 KB
testcase_17 AC 19 ms
8,172 KB
testcase_18 AC 54 ms
18,380 KB
testcase_19 AC 103 ms
32,712 KB
testcase_20 AC 129 ms
39,720 KB
testcase_21 AC 103 ms
33,000 KB
testcase_22 AC 89 ms
28,692 KB
testcase_23 AC 119 ms
23,096 KB
testcase_24 AC 128 ms
39,428 KB
testcase_25 AC 72 ms
22,808 KB
testcase_26 AC 104 ms
32,004 KB
testcase_27 AC 131 ms
40,612 KB
testcase_28 AC 79 ms
25,240 KB
testcase_29 AC 82 ms
25,980 KB
testcase_30 AC 92 ms
25,956 KB
testcase_31 AC 130 ms
40,300 KB
testcase_32 AC 56 ms
18,956 KB
testcase_33 AC 17 ms
7,552 KB
testcase_34 AC 151 ms
47,032 KB
testcase_35 AC 152 ms
46,900 KB
testcase_36 AC 153 ms
46,904 KB
testcase_37 AC 152 ms
47,028 KB
testcase_38 AC 151 ms
47,028 KB
testcase_39 AC 109 ms
42,888 KB
testcase_40 AC 99 ms
34,128 KB
testcase_41 AC 114 ms
44,880 KB
testcase_42 AC 81 ms
31,840 KB
testcase_43 AC 37 ms
16,484 KB
testcase_44 AC 104 ms
40,432 KB
testcase_45 AC 78 ms
31,424 KB
testcase_46 AC 22 ms
11,048 KB
testcase_47 AC 40 ms
17,780 KB
testcase_48 AC 91 ms
36,564 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 157 ms
47,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll=long long;
using ull=unsigned long long;
using pll=pair<ll,ll>;
using tll=tuple<ll,ll,ll>;
using ld=long double;
const ll INF=(1ll<<60);
#define rep(i,n) for (ll i=0;i<(ll)(n);i++)
#define replr(i,l,r) for (ll i=(ll)(l);i<(ll)(r);i++)
#define all(v) v.begin(),v.end()
#define len(v) ((ll)v.size())
template<class T> inline bool chmin(T &a,T b){
    if(a>b){
        a=b;
        return true;
    }
    return false;
}
template<class T> inline bool chmax(T &a,T b){
    if(a<b){
        a=b;
        return true;
    }
    return false;
}
int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    ll n;
    cin >> n;
    vector<vector<ll>> v(3,vector<ll>(n));
    rep(i,3){
        rep(j,n){
            cin >> v[i][j];
        }
    }
    vector<vector<vector<ll>>> dp(n+1,vector<vector<ll>>(3,vector<ll>(3,-INF)));
    dp[0][0][0]=0;
    rep(i,n){
        rep(j,3){
            rep(k,3){
                
                replr(nj,j,min(3ll,j+2)){
                    replr(nk,k,min(3ll,k+2)){
                        ll x=v[0][i];
                        if((nj==1&&nk!=1)||(nj!=1&&nk==1)) x=v[1][i];
                        if(nj==1&&nk==1) x=v[2][i];
                        chmax(dp[i+1][nj][nk],dp[i][j][k]+x);
                    }
                }
            }
        }
    }
    ll ans=-INF;
    rep(i,3){
        rep(j,3){
            chmax(ans,dp[n][i][j]);
        }
    }
    cout << ans << '\n';
}
0