結果

問題 No.2982 Logic Battle
ユーザー coindarwcoindarw
提出日時 2024-12-07 16:03:06
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 2,028 bytes
コンパイル時間 3,560 ms
コンパイル使用メモリ 257,832 KB
実行使用メモリ 818,048 KB
最終ジャッジ日時 2024-12-07 16:03:43
合計ジャッジ時間 32,293 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 MLE -
testcase_11 AC 548 ms
414,080 KB
testcase_12 AC 415 ms
331,392 KB
testcase_13 AC 585 ms
449,024 KB
testcase_14 MLE -
testcase_15 AC 46 ms
33,792 KB
testcase_16 MLE -
testcase_17 AC 358 ms
262,528 KB
testcase_18 MLE -
testcase_19 AC 76 ms
60,416 KB
testcase_20 MLE -
testcase_21 MLE -
testcase_22 MLE -
testcase_23 MLE -
testcase_24 MLE -
testcase_25 MLE -
testcase_26 MLE -
testcase_27 MLE -
testcase_28 MLE -
testcase_29 MLE -
testcase_30 MLE -
testcase_31 AC 3 ms
5,248 KB
testcase_32 MLE -
testcase_33 MLE -
testcase_34 MLE -
testcase_35 MLE -
testcase_36 MLE -
testcase_37 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using ll = long long;
#define rep(i, n) for (int i = 0, i##_len = (n); i < i##_len; ++i)
#define reps(i, n) for (int i = 1, i##_len = (n); i <= i##_len; ++i)
#define rrep(i, n) for (int i = ((int)(n)-1); i >= 0; --i)
#define rreps(i, n) for (int i = ((int)(n)); i > 0; --i)
#define rep2(i, s, n) for (int i = (s); i < (int)(n); i++)
#define repc2(i, s, n) for (int i = (s); i <= (int)(n); i++)
constexpr int inf = 2000'000'000;
constexpr ll linf = 4000000000000000000ll;
constexpr ll M7 = 1000000007ll;
constexpr ll M09 = 1000000009ll;
constexpr ll M9 = 998244353ll;
#define all(v) begin(v), end(v)
#define rall(v) rbegin(v), rend(v)
using namespace std;

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    int n;
    cin >> n;

    vector<vector<ll>> a(n, vector<ll>(3));
    rep(i, n) rep(j, 3) cin >> a[i][j];
    using P = pair<ll, ll>;
    vector<vector<vector<P>>> dp(n + 1, vector<vector<P>>(3, vector<P>(n + 1, {-linf, -linf})));
    dp[0][0][0] = dp[0][1][0] = dp[0][2][0] = {0, 0};

    auto fmax = [&](P a, P b, int i) {
        ll t = n - 1 - i;
        auto [da, xa] = a;
        auto [db, xb] = b;
        if (da == -linf) return b;
        if (db == -linf) return a;
        if (xa == xb) return da > db ? a : b;
        ll sa = da + t * xa - (1 + t) * t / 2;
        ll sb = db + t * xb - (1 + t) * t / 2;
        return sa > sb ? a : b;
    };

    rep(i, n) {
        rep(j, 3) {
            rep(k, n + 1) {
                auto [d, x] = dp[i][j][k];
                rep(nj, 3) {
                    if (j == nj) continue;
                    ll aij = a[i][nj];
                    ll nx = max<ll>(0ll, x + aij - 1);
                    ll nk = min<ll>(n, nx);
                    ll nd = d + (x + aij);
                    dp[i + 1][nj][nk] = fmax(dp[i + 1][nj][nk], {nd, nx}, i);
                }
            }
        }
    }

    ll ans = -linf;
    rep(j, 3) {
        rep(k, n + 1) { ans = max(ans, dp[n][j][k].first); }
    }

    cout << ans << endl;
}
0