結果

問題 No.2982 Logic Battle
ユーザー askr58askr58
提出日時 2024-12-07 01:54:01
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,546 bytes
コンパイル時間 5,823 ms
コンパイル使用メモリ 315,072 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-07 01:54:50
合計ジャッジ時間 46,504 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 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 1,330 ms
5,248 KB
testcase_11 AC 591 ms
5,248 KB
testcase_12 AC 494 ms
5,248 KB
testcase_13 AC 656 ms
5,248 KB
testcase_14 AC 1,852 ms
5,248 KB
testcase_15 AC 48 ms
5,248 KB
testcase_16 AC 924 ms
5,248 KB
testcase_17 AC 393 ms
5,248 KB
testcase_18 AC 1,122 ms
5,248 KB
testcase_19 AC 85 ms
5,248 KB
testcase_20 AC 1,895 ms
5,248 KB
testcase_21 AC 1,882 ms
5,248 KB
testcase_22 AC 1,854 ms
5,248 KB
testcase_23 AC 1,872 ms
5,248 KB
testcase_24 AC 1,853 ms
5,248 KB
testcase_25 AC 1,870 ms
5,248 KB
testcase_26 AC 1,857 ms
5,248 KB
testcase_27 AC 1,896 ms
5,248 KB
testcase_28 AC 1,892 ms
5,248 KB
testcase_29 AC 1,889 ms
5,248 KB
testcase_30 WA -
testcase_31 AC 2 ms
5,248 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll=long long;
using mint=modint998244353;
int main()
{
    int n;
    cin>>n;
    ll inf=1000000000000000000;
    vector<vector<ll>> a(n,vector<ll>(3));
    for(int i=0;i<n;i++)cin>>a[i][0]>>a[i][1]>>a[i][2];
    vector<vector<ll>> crt(n+1,vector<ll>(3,-inf));
    for(int j=0;j<3;j++){
        if(a[0][j]>=n){
            crt[n][j]=max(crt[n][j],a[0][j]*n-n*(n-1)/2);
        }else if(a[0][j]>0){
            crt[a[0][j]-1][j]=max(crt[a[0][j]][j],a[0][j]);
        }else{
            crt[0][j]=0;
        }
    }
    for(int i=1;i<n;i++){
        vector<vector<ll>> nxt(n+1,vector<ll>(3));
        for(int j=0;j<=n;j++){
            for(int k=0;k<3;k++){
                for(int l=0;l<3;l++){
                    if(k!=l){
                        if(j==n){
                            nxt[n][l]=max(nxt[n][l],crt[j][k]+a[i][l]*(n-i));
                        }else if(j+a[i][l]>=n){
                            nxt[n][l]=max(nxt[n][l],crt[j][k]+a[i][l]*(n-i)-(n-i)*(n-i-1)/2);
                        }else if(j+a[i][l]>0){
                            nxt[j+a[i][l]-1][l]=max(nxt[j+a[i][l]-1][l],crt[j][k]+j+a[i][l]);
                        }else{
                            nxt[0][l]=max(nxt[0][l],crt[j][k]);
                        }
                    }
                }
            }
        }
        crt=nxt;
    }
    ll ans=0;
    for(int i=0;i<=n;i++)for(int j=0;j<3;j++)ans=max(ans,crt[i][j]);
    cout<<ans<<endl;
    return 0;
}
0