結果

問題 No.2982 Logic Battle
ユーザー 沙耶花沙耶花
提出日時 2024-12-07 00:06:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,149 bytes
コンパイル時間 4,454 ms
コンパイル使用メモリ 264,284 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-12-07 00:07:53
合計ジャッジ時間 68,542 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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;
	
	rep(i,n){
		{
			vector ndp(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);
		}
		{
			vector ndp(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