結果

問題 No.2889 Rusk
ユーザー shobonvipshobonvip
提出日時 2024-09-14 01:03:27
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 774 bytes
コンパイル時間 3,104 ms
コンパイル使用メモリ 253,388 KB
実行使用メモリ 46,980 KB
最終ジャッジ日時 2024-09-14 01:03:37
合計ジャッジ時間 9,078 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 7 ms
6,944 KB
testcase_15 AC 26 ms
10,324 KB
testcase_16 AC 62 ms
21,248 KB
testcase_17 AC 18 ms
8,180 KB
testcase_18 AC 52 ms
18,636 KB
testcase_19 AC 100 ms
32,716 KB
testcase_20 AC 120 ms
39,684 KB
testcase_21 AC 100 ms
33,108 KB
testcase_22 AC 85 ms
28,620 KB
testcase_23 AC 68 ms
23,060 KB
testcase_24 AC 123 ms
39,208 KB
testcase_25 AC 68 ms
22,944 KB
testcase_26 AC 98 ms
32,132 KB
testcase_27 AC 126 ms
40,604 KB
testcase_28 AC 74 ms
25,244 KB
testcase_29 AC 77 ms
25,980 KB
testcase_30 AC 79 ms
25,952 KB
testcase_31 AC 125 ms
40,292 KB
testcase_32 AC 55 ms
19,076 KB
testcase_33 AC 16 ms
7,552 KB
testcase_34 AC 145 ms
46,820 KB
testcase_35 AC 146 ms
46,964 KB
testcase_36 AC 147 ms
46,924 KB
testcase_37 AC 147 ms
46,980 KB
testcase_38 AC 148 ms
46,948 KB
testcase_39 AC 103 ms
43,020 KB
testcase_40 AC 82 ms
34,056 KB
testcase_41 AC 108 ms
44,804 KB
testcase_42 AC 75 ms
31,820 KB
testcase_43 AC 36 ms
16,364 KB
testcase_44 AC 97 ms
40,392 KB
testcase_45 AC 74 ms
31,516 KB
testcase_46 AC 22 ms
11,048 KB
testcase_47 AC 40 ms
17,780 KB
testcase_48 AC 87 ms
36,564 KB
testcase_49 AC 2 ms
6,940 KB
testcase_50 AC 2 ms
6,944 KB
testcase_51 AC 2 ms
6,940 KB
testcase_52 AC 2 ms
6,944 KB
testcase_53 AC 2 ms
6,940 KB
testcase_54 AC 150 ms
46,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;

#define rep(i, s, n) for (int i = (int)(s); i < (int)(n); i++)
#define rrep(i, s, n) for (int i = (int)(n)-1; i >= (int)(s); i--)

int main(){
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);

	int n; cin >> n;
	vector a(3, vector<ll>(n));
	rep(j,0,3) rep(i,0,n) cin >> a[j][i];

	// index, used(0-2), now? 
	vector dp(n+1, vector(3, vector<ll>(3,-1e18)));
	dp[0][0][0] = 0;
	
	rep(i,0,n){
		rep(j,0,3){
			rep(x,0,3-j){
				rep(k,0,3){
					rep(y,0,k+1){
						if (dp[i][j][k] < 0) continue;
						dp[i+1][j+x][y+x] = max(dp[i+1][j+x][y+x], dp[i][j][k] + a[y+x][i]);
					}
				}
			}
		}
	}
	
	ll ans = -1e18;
	rep(i,0,3){
		rep(j,0,3){
			ans = max(ans, dp[n][i][j]);
		}
	}
	cout << ans << '\n';
}


0