結果
問題 | No.2982 Logic Battle |
ユーザー | makichan |
提出日時 | 2024-12-07 00:32:37 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,360 bytes |
コンパイル時間 | 5,840 ms |
コンパイル使用メモリ | 314,304 KB |
実行使用メモリ | 590,976 KB |
最終ジャッジ日時 | 2024-12-07 00:32:59 |
合計ジャッジ時間 | 18,615 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 3 ms
5,248 KB |
testcase_04 | AC | 3 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 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | MLE | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | MLE | - |
testcase_21 | MLE | - |
testcase_22 | MLE | - |
testcase_23 | MLE | - |
testcase_24 | MLE | - |
testcase_25 | MLE | - |
testcase_26 | MLE | - |
testcase_27 | MLE | - |
testcase_28 | MLE | - |
testcase_29 | MLE | - |
testcase_30 | MLE | - |
testcase_31 | AC | 2 ms
5,248 KB |
testcase_32 | MLE | - |
testcase_33 | MLE | - |
testcase_34 | MLE | - |
testcase_35 | MLE | - |
testcase_36 | MLE | - |
testcase_37 | MLE | - |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using mint = atcoder::static_modint<998244353>; //using mint = atcoder::static_modint<1000000007>; using namespace std; using namespace atcoder; using ld = long double; using ll = long long; #define mp(a,b) make_pair(a,b) #define rep(i,s,n) for(int i=s; i<n; i++) const vector<int> dx{1,0,-1,0},dy{0,1,0,-1}; int main(){ int n;cin >> n; vector<vector<int>> a(n+1,vector<int>(3)); rep(i,1,n+1)rep(j,0,3)cin >> a[i][j]; vector<vector<vector<ll>>> dp(n+1,vector<vector<ll>>(3,vector<ll>(5001,-1))); vector<vector<ll>> dpover(n+1,vector<ll>(3,-1)); rep(j,0,3)dp[0][j][0]=0; rep(i,1,n+1)rep(j,0,3){ rep(k,0,3)if(k!=j){ rep(l,0,5001)if(dp[i-1][j][l]>=0){ int newatk=l+a[i][k]; if(newatk-1<=5000)dp[i][k][max(0,newatk-1)]=max(dp[i][k][max(0,newatk-1)],dp[i-1][j][l]+newatk); else{ ll p=n-i+1; p*=(2*newatk-n+i); p/=2; dpover[i][k]=max(dpover[i][k],dpover[i-1][j]+p); } } if(dpover[i-1][j]>=0)dpover[i][k]=max(dpover[i][k],dpover[i-1][j]+(ll)a[i][k]*(n-i+1)); } } ll ans=0; rep(j,0,3)rep(k,0,5001)ans=max(ans,dp[n][j][k]); rep(j,0,3)ans=max(ans,dpover[n][j]); cout << ans; }