結果

問題 No.1247 ブロック登り
ユーザー MisterMister
提出日時 2020-11-04 07:11:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,913 ms / 3,000 ms
コード長 2,824 bytes
コンパイル時間 1,150 ms
コンパイル使用メモリ 85,756 KB
実行使用メモリ 330,624 KB
最終ジャッジ日時 2024-07-22 09:44:02
合計ジャッジ時間 23,019 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 6 ms
5,504 KB
testcase_08 AC 7 ms
5,632 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 4 ms
5,376 KB
testcase_11 AC 1,659 ms
330,496 KB
testcase_12 AC 1,422 ms
315,264 KB
testcase_13 AC 1,587 ms
330,624 KB
testcase_14 AC 1,615 ms
330,624 KB
testcase_15 AC 1,598 ms
330,624 KB
testcase_16 AC 1,607 ms
330,496 KB
testcase_17 AC 1,585 ms
330,624 KB
testcase_18 AC 1,513 ms
300,160 KB
testcase_19 AC 93 ms
52,480 KB
testcase_20 AC 29 ms
22,016 KB
testcase_21 AC 4 ms
5,376 KB
testcase_22 AC 17 ms
10,112 KB
testcase_23 AC 12 ms
8,320 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 1,593 ms
330,496 KB
testcase_26 AC 1,913 ms
330,624 KB
testcase_27 AC 1,586 ms
330,496 KB
testcase_28 AC 1,604 ms
330,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

template <class T>
std::vector<T> vec(int len, T elem) { return std::vector<T>(len, elem); }

constexpr int INF = 1 << 30;

void solve() {
    int n, k;
    std::cin >> n >> k;

    std::vector<int> xs(n);
    for (auto& x : xs) std::cin >> x;

    auto dp = vec(2, vec(k, vec(n, vec(n, -INF))));
    // h, l, r, side (0 <=> left)

    for (int s = 0; s < 2; ++s) {
        for (int i = 0; i < n; ++i) {
            dp[s][k - 1][i][i] = xs[i] * k;
        }
    }

    for (int h = k - 1; h > 0; --h) {
        for (int l = 0; l < n; ++l) {
            for (int r = l; r < n; ++r) {
                // left
                {
                    auto prev = dp[0][h][l][r];

                    // out
                    if (l - 1 >= 0) {
                        dp[0][h - 1][l - 1][r] = std::max(dp[0][h - 1][l - 1][r],
                                                          prev + xs[l - 1] * h);
                    }

                    // down
                    if (h < r - l) {
                        dp[0][0][l + h][r] = std::max(dp[0][0][l + h][r], prev);
                    }
                }

                // right
                {
                    auto prev = dp[1][h][l][r];

                    // out
                    if (r + 1 < n) {
                        dp[1][h - 1][l][r + 1] = std::max(dp[1][h - 1][l][r + 1],
                                                          prev + xs[r + 1] * h);
                    }

                    // down
                    if (h < r - l) {
                        dp[1][0][l][r - h] = std::max(dp[1][0][l][r - h], prev);
                    }
                }

                for (int s = 0; s < 2; ++s) {
                    auto prev = dp[s][h][l][r];

                    // stay
                    if (r - l >= 1 && h >= 2) {
                        dp[s][h - 2][l][r] = std::max(dp[s][h - 2][l][r], prev);
                    }

                    // move
                    if (r - l >= 1 && h >= r - l) {
                        auto nh = h - (r - l);
                        dp[1 - s][nh][l][r] = std::max(dp[1 - s][nh][l][r], prev);
                    }
                }
            }
        }
    }

    std::vector<int> ans(n, -INF);
    for (int s = 0; s < 2; ++s) {
        for (int l = 0; l < n; ++l) {
            for (int r = l; r < n; ++r) {
                auto i = (s == 0 ? l : r);
                for (int d : {-1, 1}) {
                    if (0 <= i + d && i + d < n) {
                        ans[i + d] = std::max(ans[i + d], dp[s][0][l][r]);
                    }
                }
            }
        }
    }

    for (auto a : ans) std::cout << a << "\n";
}

int main() {
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);

    solve();

    return 0;
}
0