結果

問題 No.2982 Logic Battle
ユーザー makichanmakichan
提出日時 2024-12-07 00:38:51
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 809 bytes
コンパイル時間 5,928 ms
コンパイル使用メモリ 312,944 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-07 00:38:58
合計ジャッジ時間 6,393 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 WA -
testcase_03 AC 2 ms
5,248 KB
testcase_04 WA -
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 1 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 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 5 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 3 ms
5,248 KB
testcase_33 AC 5 ms
5,248 KB
testcase_34 AC 5 ms
5,248 KB
testcase_35 AC 5 ms
5,248 KB
testcase_36 AC 6 ms
5,248 KB
testcase_37 AC 5 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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<pair<ll,ll>>> dp(n+1,vector<pair<ll,ll>>(3));
    rep(i,1,n+1)rep(j,0,3)rep(k,0,3)if(j!=k){
        int atk=dp[i-1][j].first+a[i][k];
        pair<ll,ll> p=mp(max(0,atk-1),dp[i-1][j].second+atk);
        dp[i][k]=max(dp[i][k],p);
    }
    ll ans=0;
    rep(i,0,3)ans=max(ans,dp[n][i].second);
    cout <<ans;
}
0