結果

問題 No.2889 Rusk
ユーザー Nzt3Nzt3
提出日時 2024-09-14 22:31:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 866 bytes
コンパイル時間 2,579 ms
コンパイル使用メモリ 205,280 KB
実行使用メモリ 5,760 KB
最終ジャッジ日時 2024-09-14 22:31:29
合計ジャッジ時間 8,275 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 3 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 6 ms
5,376 KB
testcase_15 AC 17 ms
5,376 KB
testcase_16 AC 41 ms
5,376 KB
testcase_17 AC 13 ms
5,376 KB
testcase_18 AC 35 ms
5,376 KB
testcase_19 AC 65 ms
5,376 KB
testcase_20 AC 80 ms
5,376 KB
testcase_21 AC 65 ms
5,376 KB
testcase_22 AC 56 ms
5,376 KB
testcase_23 AC 45 ms
5,376 KB
testcase_24 AC 79 ms
5,376 KB
testcase_25 AC 42 ms
5,376 KB
testcase_26 AC 65 ms
5,376 KB
testcase_27 AC 84 ms
5,376 KB
testcase_28 AC 49 ms
5,376 KB
testcase_29 AC 51 ms
5,376 KB
testcase_30 AC 50 ms
5,376 KB
testcase_31 AC 81 ms
5,376 KB
testcase_32 AC 36 ms
5,376 KB
testcase_33 AC 11 ms
5,376 KB
testcase_34 AC 95 ms
5,632 KB
testcase_35 AC 95 ms
5,760 KB
testcase_36 AC 95 ms
5,632 KB
testcase_37 AC 96 ms
5,632 KB
testcase_38 AC 95 ms
5,632 KB
testcase_39 AC 53 ms
5,376 KB
testcase_40 AC 42 ms
5,376 KB
testcase_41 AC 57 ms
5,504 KB
testcase_42 AC 40 ms
5,376 KB
testcase_43 AC 20 ms
5,376 KB
testcase_44 AC 50 ms
5,376 KB
testcase_45 AC 39 ms
5,376 KB
testcase_46 AC 12 ms
5,376 KB
testcase_47 AC 22 ms
5,376 KB
testcase_48 AC 45 ms
5,376 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 102 ms
5,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;
constexpr int MOD=998244353;
#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define rep2(i,l,r) for(int i=(l);i<(int)(r);i++)

void chmax(ll &a,ll b){
  if(b>a)a=b;
}
int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N;
  cin>>N;
  vector A(N,array<int,3>());
  rep(i,N)cin>>A[i][0];
  rep(i,N)cin>>A[i][1];
  rep(i,N)cin>>A[i][2];
  vector dp(9,-(ll)1e16);
  dp[0]=0;
  rep(i,N){
    vector ndp(9,-(ll)1e16);
    rep(c,3){
      rep(k,3){
        rep(d,3){
          if(k+d<3&&c+d<3){
            chmax(ndp[(c+d)*3+(k+d)],dp[c*3+k]+A[i][k+d]);
          }
        }
        rep(j,3){
          if(j<=k){
            chmax(ndp[c*3+j],dp[c*3+k]+A[i][j]);
          }
        }
      }
    }
    rep(j,9){
      dp[j]=ndp[j];
    }
  }
  cout<<*max_element(dp.begin(),dp.end())<<'\n';
}
0