結果

問題 No.1247 ブロック登り
ユーザー 👑 rin204rin204
提出日時 2022-07-06 22:31:11
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 2,384 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 504,480 KB
最終ジャッジ日時 2024-06-02 11:37:49
合計ジャッジ時間 14,061 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,736 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 46 ms
58,240 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 AC 62 ms
67,584 KB
testcase_05 AC 52 ms
62,080 KB
testcase_06 AC 41 ms
52,224 KB
testcase_07 AC 270 ms
81,208 KB
testcase_08 AC 278 ms
81,876 KB
testcase_09 AC 207 ms
79,392 KB
testcase_10 AC 232 ms
79,380 KB
testcase_11 AC 2,866 ms
504,436 KB
testcase_12 AC 2,792 ms
484,668 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 2,645 ms
504,352 KB
testcase_16 AC 2,659 ms
504,480 KB
testcase_17 AC 2,759 ms
503,884 KB
testcase_18 AC 2,592 ms
465,160 KB
testcase_19 AC 741 ms
145,144 KB
testcase_20 AC 504 ms
105,996 KB
testcase_21 AC 149 ms
79,388 KB
testcase_22 AC 290 ms
86,392 KB
testcase_23 AC 283 ms
84,372 KB
testcase_24 AC 45 ms
60,076 KB
testcase_25 AC 2,689 ms
502,924 KB
testcase_26 AC 2,448 ms
502,160 KB
testcase_27 AC 2,705 ms
503,280 KB
testcase_28 AC 2,766 ms
503,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""
k, k - 1, ..., 1 の順番に割り当てていく
既に割り当ててるところに上書きはできない

dp[l][r][x][t]
    区間[l, r]に数字を割り当て
    x 以上の数字を割り当て済み
    t = 0 -> 現在左端
    t = 1 -> 現在右端

初期値は
dp[i][i][k][0] = dp[i][i][k][1] = A[i] * k
dp[l][r][x][t] からの遷移
    dp[l][r + 1][x - 1][t] (t == 1)
        r + 1 に x - 1 を割り当てる
    dp[l - 1][r][x - 1][t] (t == 0)
        l - 1 に x - 1 を割り当てる
    dp[l][r][x - 2][t] (l != r)
        2手消費する
    dp[l][r][x - (r - l)][1 - t] (l != r)
        反対側に移動する

i 番目の答えは
    l <= i <= r
    dp[l][r][r - i][1]
    dp[l][r][i - l][0]
    の中の最小値
"""
n, K = map(int, input().split())
A = list(map(int, input().split()))
inf =  1 << 30
dp = [-inf] * (n * n * (K + 1) * 2)
f = lambda i, j, k, l: ((i * n + j) * (K + 1) + k) * 2 + l
for i, a in enumerate(A):
    dp[f(i, i, K, 0)] = a * K
    dp[f(i, i, K, 1)] = a * K

for x in range(K, 0, -1):
    for l in range(n):
        for r in range(l, n):
            p = f(l, r, x, 0)
            if l != 0:
                p2 = f(l - 1, r, x - 1, 0)
                dp[p2] = max(dp[p2], dp[p] + A[l - 1] * (x - 1))
            if l != r:
                if x >= 2:
                    p2 = f(l, r, x - 2, 0)
                    dp[p2] = max(dp[p2], dp[p])
                if x - (r - l) >= 0:
                    p2 = f(l, r, x - (r - l), 1)
                    dp[p2] = max(dp[p2], dp[p])

            p = f(l, r, x, 1)
            if r != n - 1:
                p2 = f(l, r + 1, x - 1, 1)
                dp[p2] = max(dp[p2], dp[p] + A[r + 1] * (x - 1))
            if l != r:
                if x >= 2:
                    p2 = f(l, r, x - 2, 1)
                    dp[p2] = max(dp[p2], dp[p])
                if x - (r - l) >= 0:
                    p2 = f(l, r, x - (r - l), 0)
                    dp[p2] = max(dp[p2], dp[p])

for i in range(n):
    ans = -1 << 30
    for l in range(min(i + 2, n)):
        for r in range(max(0, i - 1), n):
            if l > r:
                continue
            if abs(r - i) <= K:
                p = f(l, r, abs(r - i), 1)
                ans = max(ans, dp[p])
            if abs(i - l) <= K:
                p = f(l, r, abs(i - l), 0)
                ans = max(ans, dp[p])
    print(ans)

0