結果
問題 | No.2982 Logic Battle |
ユーザー | umezo |
提出日時 | 2024-12-07 01:56:43 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,103 bytes |
コンパイル時間 | 3,357 ms |
コンパイル使用メモリ | 251,288 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-07 01:57:21 |
合計ジャッジ時間 | 37,341 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 5 ms
5,248 KB |
testcase_02 | AC | 3 ms
5,248 KB |
testcase_03 | AC | 4 ms
5,248 KB |
testcase_04 | AC | 4 ms
5,248 KB |
testcase_05 | AC | 4 ms
5,248 KB |
testcase_06 | AC | 4 ms
5,248 KB |
testcase_07 | AC | 3 ms
5,248 KB |
testcase_08 | AC | 3 ms
5,248 KB |
testcase_09 | AC | 4 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 | 1,420 ms
5,248 KB |
testcase_31 | AC | 2 ms
5,248 KB |
testcase_32 | AC | 1,427 ms
5,248 KB |
testcase_33 | AC | 1,443 ms
5,248 KB |
testcase_34 | AC | 1,434 ms
5,248 KB |
testcase_35 | AC | 1,434 ms
5,248 KB |
testcase_36 | AC | 1,431 ms
5,248 KB |
testcase_37 | AC | 1,430 ms
5,248 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; #define rep(i,n) for(int i=0;i<(int)(n);i++) #define ALL(v) v.begin(),v.end() typedef long long ll; template <class T> using V=vector<T>; template <class T> using VV=V<V<T>>; int A[5050][3]; int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); VV<ll> dp(10050,V<ll>(3,-1)); int n; cin>>n; rep(i,n) rep(j,3) cin>>A[i][j]; rep(j,3){ if(A[0][j]>=5000) dp[5000][j]=A[0][j]*n-1; else dp[max(0,min(5000,(int)A[0][j]-1))][j]=A[0][j]; } for(int i=0;i<n-1;i++){ VV<ll> old(5050,V<ll>(3,-1)); swap(old,dp); rep(k,3) rep(l,3){ if(k==l) continue; rep(j,5000){ if(old[j][k]==-1) continue; int tmp=max(0,min(5000,j+(int)A[i+1][l]-1)); if(tmp<5000) dp[tmp][l]=max(dp[tmp][l],old[j][k]+(ll)j+(ll)A[i+1][l]); else dp[5000][l]=max(dp[5000][l],old[j][k]+j*(n-i+1)-1); } if(old[5000][k]!=-1) dp[5000][l]=max(dp[5000][l],old[5000][k]+A[i+1][l]*(n-i-1)-1); } } ll ans=0; rep(j,5001) rep(k,3) ans=max(ans,dp[j][k]); cout<<ans<<endl; return 0; }