結果

問題 No.2889 Rusk
ユーザー 沙耶花沙耶花
提出日時 2024-09-13 21:32:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 282 ms / 2,000 ms
コード長 1,288 bytes
コンパイル時間 4,706 ms
コンパイル使用メモリ 261,992 KB
実行使用メモリ 8,192 KB
最終ジャッジ日時 2024-09-13 21:32:47
合計ジャッジ時間 11,887 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 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 11 ms
5,376 KB
testcase_15 AC 44 ms
5,376 KB
testcase_16 AC 109 ms
5,376 KB
testcase_17 AC 32 ms
5,376 KB
testcase_18 AC 92 ms
5,376 KB
testcase_19 AC 177 ms
6,528 KB
testcase_20 AC 219 ms
7,424 KB
testcase_21 AC 179 ms
6,528 KB
testcase_22 AC 153 ms
5,888 KB
testcase_23 AC 120 ms
5,632 KB
testcase_24 AC 217 ms
7,168 KB
testcase_25 AC 118 ms
5,376 KB
testcase_26 AC 173 ms
6,528 KB
testcase_27 AC 224 ms
7,296 KB
testcase_28 AC 133 ms
5,760 KB
testcase_29 AC 137 ms
5,760 KB
testcase_30 AC 138 ms
5,888 KB
testcase_31 AC 221 ms
7,168 KB
testcase_32 AC 96 ms
5,376 KB
testcase_33 AC 28 ms
5,376 KB
testcase_34 AC 262 ms
8,064 KB
testcase_35 AC 263 ms
7,936 KB
testcase_36 AC 260 ms
8,192 KB
testcase_37 AC 265 ms
8,064 KB
testcase_38 AC 260 ms
7,936 KB
testcase_39 AC 104 ms
7,552 KB
testcase_40 AC 81 ms
6,656 KB
testcase_41 AC 111 ms
7,680 KB
testcase_42 AC 76 ms
6,400 KB
testcase_43 AC 37 ms
5,376 KB
testcase_44 AC 97 ms
7,296 KB
testcase_45 AC 75 ms
6,400 KB
testcase_46 AC 22 ms
5,376 KB
testcase_47 AC 39 ms
5,376 KB
testcase_48 AC 87 ms
6,944 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
8,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 4000000000000000001LL

int main(){
	
	int n;
	cin>>n;
	vector<long long> a(n),b(n),c(n);
	rep(i,n)cin>>a[i];
	rep(i,n)cin>>b[i];
	rep(i,n)cin>>c[i];
	long long ans = 0;
	//A* B* C+ B* A*
	{
		vector<long long> dp(5,-Inf64);
		dp[0] = 0,dp[1] = 0,dp[2] = 0;
		rep(i,n){
			vector<long long> ndp(5,-Inf64);
			rep(j,5){
				long long nv = dp[j];
				if(j==0 || j==4)nv += a[i];
				if(j==1 || j==3)nv += b[i];
				if(j==2)nv += c[i];
				for(int k=j;k<5;k++){
					if(j<2&&k>2)continue;
					ndp[k] = max(ndp[k],nv);
				}
			}
			swap(dp,ndp);
		}
		for(int i=2;i<5;i++)ans = max(ans,dp[i]);
	}
	
	//A* B+ A* B+ A*
	{
		vector<long long> dp(5,-Inf64);
		dp[0] = 0,dp[1] = 0;
		rep(i,n){
			vector<long long> ndp(5,-Inf64);
			rep(j,5){
				long long nv = dp[j];
				if(j==0 || j==2 || j==4)nv += a[i];
				if(j==1 || j==3)nv += b[i];
				for(int k=j;k<5;k++){
					if(j<1&&k>1)continue;
					if(j<3&&k>3)continue;
					ndp[k] = max(ndp[k],nv);
				}
			}
			swap(dp,ndp);
		}
		for(int i=3;i<5;i++)ans = max(ans,dp[i]);
	}
	
	cout<<ans<<endl;
	
	return 0;
	
}
0