結果

問題 No.2889 Rusk
ユーザー kotatsugamekotatsugame
提出日時 2024-09-13 21:35:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 686 bytes
コンパイル時間 698 ms
コンパイル使用メモリ 65,408 KB
実行使用メモリ 13,696 KB
最終ジャッジ日時 2024-09-13 21:35:11
合計ジャッジ時間 4,851 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 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 5 ms
5,376 KB
testcase_15 AC 15 ms
5,376 KB
testcase_16 AC 35 ms
7,680 KB
testcase_17 AC 11 ms
5,376 KB
testcase_18 AC 30 ms
7,040 KB
testcase_19 AC 56 ms
10,240 KB
testcase_20 AC 69 ms
11,904 KB
testcase_21 AC 57 ms
10,240 KB
testcase_22 AC 49 ms
9,216 KB
testcase_23 AC 39 ms
8,064 KB
testcase_24 AC 69 ms
11,776 KB
testcase_25 AC 38 ms
7,936 KB
testcase_26 AC 55 ms
10,112 KB
testcase_27 AC 72 ms
12,032 KB
testcase_28 AC 42 ms
8,448 KB
testcase_29 AC 44 ms
8,704 KB
testcase_30 AC 44 ms
8,576 KB
testcase_31 AC 70 ms
12,032 KB
testcase_32 AC 31 ms
7,040 KB
testcase_33 AC 10 ms
5,376 KB
testcase_34 AC 84 ms
13,568 KB
testcase_35 AC 83 ms
13,696 KB
testcase_36 AC 84 ms
13,696 KB
testcase_37 AC 82 ms
13,568 KB
testcase_38 AC 83 ms
13,696 KB
testcase_39 AC 43 ms
12,544 KB
testcase_40 AC 34 ms
10,496 KB
testcase_41 AC 44 ms
13,056 KB
testcase_42 AC 31 ms
9,984 KB
testcase_43 AC 16 ms
6,400 KB
testcase_44 AC 40 ms
12,032 KB
testcase_45 AC 31 ms
10,112 KB
testcase_46 AC 10 ms
5,376 KB
testcase_47 AC 17 ms
6,912 KB
testcase_48 AC 36 ms
11,136 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 83 ms
13,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cassert>
using namespace std;
int N,A[2<<17],B[2<<17],C[2<<17];
long dp[2<<17][5];
long solve()
{
	for(int i=0;i<N;i++)
	{
		for(int j=0;j<4;j++)dp[i][j+1]=max(dp[i][j+1],dp[i][j]);
		dp[i+1][0]=dp[i][0]+A[i];
		dp[i+1][1]=dp[i][1]+B[i];
		dp[i+1][2]=dp[i][2]+C[i];
		dp[i+1][3]=dp[i][3]+B[i];
		dp[i+1][4]=dp[i][4]+A[i];
	}
	long ret=0;
	for(int j=0;j<5;j++)ret=max(ret,dp[N][j]);
	return ret;
}
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cin>>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];
	long ans=solve();
	for(int i=0;i<N;i++)C[i]=A[i];
	ans=max(ans,solve());
	cout<<ans<<endl;
}
0