結果

問題 No.2982 Logic Battle
ユーザー 👑 rin204rin204
提出日時 2024-12-07 00:10:12
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,257 bytes
コンパイル時間 1,350 ms
コンパイル使用メモリ 105,716 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-07 00:10:25
合計ジャッジ時間 13,440 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 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 430 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 489 ms
5,248 KB
testcase_33 AC 429 ms
5,248 KB
testcase_34 AC 429 ms
5,248 KB
testcase_35 AC 485 ms
5,248 KB
testcase_36 AC 427 ms
5,248 KB
testcase_37 AC 433 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <climits>

using namespace std;

int main() {
    int n;
    cin >> n;

    vector<vector<long long>> dp(3, vector<long long>(n + 1, -(1LL << 60)));
    dp[0][0] = dp[1][0] = dp[2][0] = 0;

    for (int t = 0; t < n; ++t) {
        vector<int> A(3);
        for (int i = 0; i < 3; ++i) {
            cin >> A[i];
        }

        vector<vector<long long>> ndp(3, vector<long long>(n + 1, -(1LL << 60)));

        for (int i1 = 0; i1 < 3; ++i1) {
            for (int i2 = 0; i2 < 3; ++i2) {
                if (i1 == i2) continue;

                for (int j = 0; j < n; ++j) {
                    int nj = j + A[i2];
                    long long nv = dp[i1][j];
                    if (nj > n) {
                        nv += (n - t) * (nj - n);
                        nj = n;
                    }

                    nv += nj;
                    nj = max(nj - 1, 0);
                    ndp[i2][nj] = max(ndp[i2][nj], nv);
                }
            }
        }
        dp = ndp;
    }

    long long result = -(1LL << 60);
    for (const auto& row : dp) {
        result = max(result, *max_element(row.begin(), row.end()));
    }

    cout << result << endl;

    return 0;
}
0