結果

問題 No.2982 Logic Battle
ユーザー olffolff
提出日時 2024-12-07 01:07:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,510 bytes
コンパイル時間 1,966 ms
コンパイル使用メモリ 202,556 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-12-07 01:07:08
合計ジャッジ時間 3,282 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using ll = long long;
using ull = unsigned long long;
const int INF = 2001001001;
const ll LINF = 9001001001001001001;

#define rep(i, n) for (int i = 0; (i) < (n); (i)++)
#define rep1(i, n) for (int i = 1; (i) < (n + 1); (i)++)
#define all(a) (a).begin(), (a).end()

int main(){
  ll N;
  cin >> N;

  ll A[5009][4];
  rep1(i,N){
    rep1(j,3){
      cin >> A[i][j];
    }
  }

  ll dp[5009][4] = {};
  ll attack[5009][4] = {};

  rep1(i,N){
    if(dp[i-1][1]+attack[i-1][1] > dp[i-1][2]+attack[i-1][2]){
      dp[i][0] = dp[i-1][1]+max(0LL,attack[i-1][1]+A[i][0]);
      attack[i][0] = max(attack[i-1][1]+A[i][0]-1, 0LL);
    } else {
      dp[i][0] = dp[i-1][2]+max(0LL,attack[i-1][2]+A[i][0]);
      attack[i][0] = max(attack[i-1][2]+A[i][0]-1, 0LL);
    }

    if(dp[i-1][0]+attack[i-1][0] > dp[i-1][2]+attack[i-1][2]){
      dp[i][1] = dp[i-1][0]+max(0LL,attack[i-1][1]+A[i][1]);
      attack[i][1] = max(attack[i-1][0]+A[i][1]-1, 0LL);
    } else {
      dp[i][1] = dp[i-1][2]+max(0LL,attack[i-1][2]+A[i][1]);
      attack[i][1] = max(attack[i-1][2]+A[i][1]-1, 0LL);
    }

    if(dp[i-1][0]+attack[i-1][0] > dp[i-1][1]+attack[i-1][1]){
      dp[i][2] = dp[i-1][0]+max(0LL,attack[i-1][0]+A[i][2]);
      attack[i][2] = max(attack[i-1][0]+A[i][2]-1, 0LL);
    } else {
      dp[i][2] = dp[i-1][1]+max(0LL,attack[i-1][1]+A[i][2]);
      attack[i][2] = max(attack[i-1][1]+A[i][2]-1, 0LL);
    }
  }

  cout << max({dp[N][1], dp[N][2], dp[N][3]}) << endl;
}

0