結果

問題 No.2982 Logic Battle
ユーザー on0seon0se
提出日時 2024-12-07 10:41:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,211 bytes
コンパイル時間 2,328 ms
コンパイル使用メモリ 182,004 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-07 10:41:21
合計ジャッジ時間 3,186 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 1 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 5 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;
#include <iostream>//この2つで三角関数を使えるようになる
#include <cmath>
using Graph = vector<vector<int>>;
using WGraph = vector<vector<pair<int, int>>>;
long double PI = 3.14159265358979;

ll n;
vector<vector<ll>> a;

int main() {
    cin >> n;
    a.resize(n, vector<ll>(3, 0));
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < 3; j++) {
            cin >> a.at(i).at(j);
        }
    }

    // dp[i][j] = (x, y)でiターン目に前回使ったカードがjの時に出せる最大累計ダメージxとその時与えたダメージyは?って部分問題
    vector<vector<pair<ll, ll>>> dp(n + 1, vector<pair<ll, ll>>(3, make_pair(0, 0)));

    for (int i = 0; i < n; i++) {
        for (int j = 0; j < 3; j++) {
            ll pre_sum = dp.at(i).at(j).first; // 前回までの累計ダメージ
            ll pre_dam = dp.at(i).at(j).second; // 前回与えたダメージ
            pre_dam = max(0LL, pre_dam - 1);
            ll dam; // 今回与えるダメージ
            if (j == 0) {
                dam = pre_dam + a.at(i).at(1);
                dp.at(i + 1).at(1) = max(make_pair(pre_sum + dam, dam), dp.at(i + 1).at(1));
                dam = pre_dam + a.at(i).at(2);
                dp.at(i + 1).at(2) = max(make_pair(pre_sum + dam, dam), dp.at(i + 1).at(2));
            }
            else if (j == 1) {
                dam = pre_dam + a.at(i).at(0);
                dp.at(i + 1).at(0) = max(make_pair(pre_sum + dam, dam), dp.at(i + 1).at(0));
                dam = pre_dam + a.at(i).at(2);
                dp.at(i + 1).at(2) = max(make_pair(pre_sum + dam, dam), dp.at(i + 1).at(2));
            }
            else if (j == 2) {
                dam = pre_dam + a.at(i).at(1);
                dp.at(i + 1).at(1) = max(make_pair(pre_sum + dam, dam), dp.at(i + 1).at(1));
                dam = pre_dam + a.at(i).at(0);
                dp.at(i + 1).at(0) = max(make_pair(pre_sum + dam, dam), dp.at(i + 1).at(0));
            }
        }
    }

    ll ans = 0;
    for (int i = 0; i < 3; i++) {
        ans = max(ans, dp.at(n).at(i).first);
    }
    cout << ans << endl;
    return 0;
}
0