結果

問題 No.2982 Logic Battle
ユーザー daiotadaiota
提出日時 2024-12-07 07:42:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 846 bytes
コンパイル時間 1,956 ms
コンパイル使用メモリ 166,536 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-07 07:42:41
合計ジャッジ時間 2,971 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 WA -
testcase_03 AC 2 ms
5,248 KB
testcase_04 WA -
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 3 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

typedef long long ll;
typedef pair<int,int> P;
#define REP(i,n) for(int i=0;i<int(n);i++)




ll dp[5010][4];


int main(void){
	cin.tie(nullptr);  ios_base::sync_with_stdio(false);
	ll i,j;


	ll N;
	cin >> N;
	for(i=1;i<=N;i++){
		for(j=1;j<=3;j++){
			cin >> dp[i][j];
		}
	}


	ll x,y;
	for(i=1;i<=N;i++){

		x=max(0LL,dp[i-1][2]-1LL),y=max(0LL,dp[i-1][3]-1LL);
		dp[i][1]+=max(x,y);

		x=max(0LL,dp[i-1][3]-1LL),y=max(0LL,dp[i-1][1]-1LL);
		dp[i][2]+=max(x,y);

		x=max(0LL,dp[i-1][2]-1LL),y=max(0LL,dp[i-1][1]-1LL);
		dp[i][3]+=max(x,y);

	}


	for(i=1;i<=N;i++){
		dp[i][1]+=max(dp[i-1][2],dp[i-1][3]);
		dp[i][2]+=max(dp[i-1][3],dp[i-1][1]);
		dp[i][3]+=max(dp[i-1][1],dp[i-1][2]);
	}



	ll ans=max(dp[N][1],dp[N][2]);
	ans=max(ans,dp[N][3]);

	cout << ans << endl;




     return 0;

}

0