結果

問題 No.2982 Logic Battle
ユーザー t98slidert98slider
提出日時 2024-12-07 05:57:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 1,440 bytes
コンパイル時間 2,268 ms
コンパイル使用メモリ 204,860 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-07 05:57:55
合計ジャッジ時間 5,453 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 1 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 54 ms
5,248 KB
testcase_11 AC 26 ms
5,248 KB
testcase_12 AC 22 ms
5,248 KB
testcase_13 AC 29 ms
5,248 KB
testcase_14 AC 73 ms
5,248 KB
testcase_15 AC 3 ms
5,248 KB
testcase_16 AC 39 ms
5,248 KB
testcase_17 AC 17 ms
5,248 KB
testcase_18 AC 47 ms
5,248 KB
testcase_19 AC 6 ms
5,248 KB
testcase_20 AC 72 ms
5,248 KB
testcase_21 AC 73 ms
5,248 KB
testcase_22 AC 73 ms
5,248 KB
testcase_23 AC 72 ms
5,248 KB
testcase_24 AC 69 ms
5,248 KB
testcase_25 AC 70 ms
5,248 KB
testcase_26 AC 71 ms
5,248 KB
testcase_27 AC 71 ms
5,248 KB
testcase_28 AC 71 ms
5,248 KB
testcase_29 AC 74 ms
5,248 KB
testcase_30 AC 108 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 108 ms
5,248 KB
testcase_33 AC 103 ms
5,248 KB
testcase_34 AC 105 ms
5,248 KB
testcase_35 AC 105 ms
5,248 KB
testcase_36 AC 105 ms
5,248 KB
testcase_37 AC 106 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    constexpr ll INF = (1ll << 60);
    int n;
    cin >> n;
    auto f = [&](ll v, int r){ return v <= r ? v * (v + 1) / 2 : r * (2 * v - r + 1) / 2; };
    constexpr array<ll,3> tmp = {-INF, -INF, -INF};
    vector<array<ll,3>> dp(1, {{}});
    array<ll,3> dp2 = {-INF, -INF, -INF};
    for(int i = 0; i < n; i++){
        const int mx = n - 1 - i;
        vector<array<ll,3>> ndp(mx + 1, tmp);
        array<ll,3> ndp2 = tmp;
        int a, b, c;
        cin >> a >> b >> c;
        auto g = [&](int at, int j, int k){
            int k1 = k == 2 ? 0 : k + 1;
            int k2 = k == 0 ? 2 : k - 1;
            ll tmp = max(dp[j][k1], dp[j][k2]);
            at += j;
            if(at >= mx) ndp2[k] = max(ndp2[k], tmp + at * (ll)(n - i) - mx * (mx + 1) / 2);
            else ndp[max(0, at - 1)][k] = max(ndp[max(0, at - 1)][k], tmp + at);
        };
        for(int j = 0; j < dp.size(); j++){
            g(a, j, 0);
            g(b, j, 1);
            g(c, j, 2);
        }
        ndp2[0] = max(ndp2[0], max(dp2[1], dp2[2]) + a * (ll)(n - i));
        ndp2[1] = max(ndp2[1], max(dp2[0], dp2[2]) + b * (ll)(n - i));
        ndp2[2] = max(ndp2[2], max(dp2[0], dp2[1]) + c * (ll)(n - i));
        swap(dp, ndp);
        swap(dp2, ndp2);
    }
    cout << *max_element(dp2.begin(), dp2.end()) << '\n';
}
0