結果

問題 No.2982 Logic Battle
ユーザー 沙耶花沙耶花
提出日時 2024-12-07 00:08:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 506 ms / 2,000 ms
コード長 1,193 bytes
コンパイル時間 5,014 ms
コンパイル使用メモリ 265,568 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-07 00:08:36
合計ジャッジ時間 15,747 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 355 ms
5,248 KB
testcase_11 AC 165 ms
5,248 KB
testcase_12 AC 134 ms
5,248 KB
testcase_13 AC 175 ms
5,248 KB
testcase_14 AC 451 ms
5,248 KB
testcase_15 AC 14 ms
5,248 KB
testcase_16 AC 264 ms
5,248 KB
testcase_17 AC 105 ms
5,248 KB
testcase_18 AC 297 ms
5,248 KB
testcase_19 AC 26 ms
5,248 KB
testcase_20 AC 452 ms
5,248 KB
testcase_21 AC 482 ms
5,248 KB
testcase_22 AC 460 ms
5,248 KB
testcase_23 AC 454 ms
5,248 KB
testcase_24 AC 491 ms
5,248 KB
testcase_25 AC 450 ms
5,248 KB
testcase_26 AC 482 ms
5,248 KB
testcase_27 AC 474 ms
5,248 KB
testcase_28 AC 461 ms
5,248 KB
testcase_29 AC 484 ms
5,248 KB
testcase_30 AC 453 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 506 ms
5,248 KB
testcase_33 AC 458 ms
5,248 KB
testcase_34 AC 464 ms
5,248 KB
testcase_35 AC 488 ms
5,248 KB
testcase_36 AC 476 ms
5,248 KB
testcase_37 AC 471 ms
5,248 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 1000000000000000000LL

long long a[5005][3];
int main(){
	
	int n;
	cin>>n;
	rep(i,n){
		rep(j,3)cin>>a[i][j];
	}
	vector dp(n+5,vector<long long>(3,-Inf64));
	rep(i,3)dp[0][i] = 0;
	vector ndp(n+5,vector<long long>(3,-Inf64));
	rep(i,n){
		{
			ndp.assign(n+5,vector<long long>(3,-Inf64));
			rep(j,n+5){
				rep(k,3){
					if(dp[j][k] == -Inf64)continue;
					rep(l,3){
						if(k == l)continue;
						long long nj = j + a[i][l];
						long long nv = dp[j][k];
						if(nj>=n+5){
							nv += ((long long)nj-(n+4)) * (n-i);
							nj = n+4;
						}
						ndp[nj][l] = max(ndp[nj][l],nv);
					}
				}
			}
			swap(dp,ndp);
		}
		{
			ndp.assign(n+5,vector<long long>(3,-Inf64));
			rep(j,n+5){
				rep(k,3){
					if(dp[j][k] == -Inf64)continue;
					ndp[max(j-1,0)][k] = max(ndp[max(j-1,0)][k],dp[j][k] + j);
				}
			}
			swap(dp,ndp);
		}
	}
	long long ans = -Inf64;
	rep(i,n+5){
		rep(j,3){
			ans = max(ans,dp[i][j]);
		}
	}
	cout<<ans<<endl;
	
	return 0;
}
0