結果

問題 No.1247 ブロック登り
ユーザー hitonanodehitonanode
提出日時 2020-10-03 13:49:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 272 ms / 3,000 ms
コード長 2,003 bytes
コンパイル時間 953 ms
コンパイル使用メモリ 84,740 KB
実行使用メモリ 215,152 KB
最終ジャッジ日時 2024-07-18 04:24:41
合計ジャッジ時間 5,110 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
7,536 KB
testcase_01 AC 3 ms
9,572 KB
testcase_02 AC 2 ms
9,748 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 3 ms
11,716 KB
testcase_05 AC 2 ms
13,804 KB
testcase_06 AC 2 ms
7,524 KB
testcase_07 AC 9 ms
40,572 KB
testcase_08 AC 9 ms
44,584 KB
testcase_09 AC 7 ms
36,408 KB
testcase_10 AC 6 ms
30,104 KB
testcase_11 AC 261 ms
214,984 KB
testcase_12 AC 254 ms
206,784 KB
testcase_13 AC 268 ms
215,096 KB
testcase_14 AC 262 ms
215,084 KB
testcase_15 AC 272 ms
215,100 KB
testcase_16 AC 266 ms
215,020 KB
testcase_17 AC 265 ms
215,124 KB
testcase_18 AC 255 ms
204,560 KB
testcase_19 AC 27 ms
38,108 KB
testcase_20 AC 10 ms
18,480 KB
testcase_21 AC 3 ms
8,160 KB
testcase_22 AC 35 ms
113,980 KB
testcase_23 AC 33 ms
113,792 KB
testcase_24 AC 23 ms
101,348 KB
testcase_25 AC 264 ms
214,996 KB
testcase_26 AC 262 ms
215,044 KB
testcase_27 AC 261 ms
215,060 KB
testcase_28 AC 257 ms
215,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("O3")
#pragma GCC target("avx")
#include <iostream>
#include <vector>
using namespace std;
#define FOR(i, begin, end) for (int i = (begin), i##_end_ = (end); i < i##_end_; i++)
#define IFOR(i, begin, end) for (int i = (end)-1, i##_begin_ = (begin); i >= i##_begin_; i--)
#define REP(i, n) FOR(i, 0, n)
template <typename T>
bool chmax(T& m, const T q) { return m < q ? (m = q, true) : false; }


int main()
{
    cin.tie(nullptr), ios::sync_with_stdio(false);
    int N, K;
    cin >> N >> K;
    vector<int> A(N);
    for (auto &x : A) cin >> x;

    constexpr int INF = 2e9;
    // vector dpl(K + 1, vector(N, vector(N, -INF)));
    // vector dpr(K + 1, vector(N, vector(N, -INF)));
    int dpl[301][300][300];
    int dpr[301][300][300];
    // array<array<array<int, 300>, 300>, 301> dpl;
    // array<array<array<int, 300>, 300>, 301> dpr;
    REP(k, K + 1) REP(i, N) REP(j, N) dpl[k][i][j] = dpr[k][i][j] = -INF;
    REP(i, N) dpl[K][i][i] = dpr[K][i][i] = A[i] * K;

    IFOR(k, 1, K + 1)
    {
        REP(l, N) FOR(r, l, N)
        {
            if (l < r and k > 1)
            {
                chmax(dpl[k - 2][l][r], dpl[k][l][r]);
                chmax(dpr[k - 2][l][r], dpr[k][l][r]);
            }
            if (l) chmax(dpl[k - 1][l - 1][r], dpl[k][l][r] + A[l - 1] * (k - 1));
            if (r + 1 < N) chmax(dpr[k - 1][l][r + 1], dpr[k][l][r] + A[r + 1] * (k - 1));

            if (k - (r - l) >= 0) chmax(dpr[k - (r - l)][l][r], dpl[k][l][r]);
            if (k - (r - l) >= 0) chmax(dpl[k - (r - l)][l][r], dpr[k][l][r]);
        }
    }

    IFOR(k, 1, K + 1)
    {
        REP(l, N) FOR(r, l + 1, N)
        {
            chmax(dpl[k - 1][l + 1][r], dpl[k][l][r]);
            chmax(dpr[k - 1][l][r - 1], dpr[k][l][r]);
        }
    }
    REP(i, N)
    {
        int ret = -INF;
        REP(j, N)
        {
            if (j <= i) chmax(ret, dpr[0][j][i]);
            if (i <= j) chmax(ret, dpl[0][i][j]);
        }
        cout << ret << '\n';
    }
}
0