結果

問題 No.1247 ブロック登り
ユーザー mkawa2mkawa2
提出日時 2021-08-18 18:05:57
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,240 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 333,412 KB
最終ジャッジ日時 2024-10-11 18:21:51
合計ジャッジ時間 6,045 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,628 KB
testcase_01 AC 38 ms
52,480 KB
testcase_02 AC 38 ms
53,248 KB
testcase_03 AC 37 ms
52,352 KB
testcase_04 AC 57 ms
66,304 KB
testcase_05 AC 59 ms
65,664 KB
testcase_06 AC 38 ms
52,608 KB
testcase_07 AC 160 ms
79,900 KB
testcase_08 AC 167 ms
80,228 KB
testcase_09 AC 151 ms
79,620 KB
testcase_10 AC 150 ms
78,568 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 432 ms
116,824 KB
testcase_20 AC 222 ms
92,516 KB
testcase_21 AC 67 ms
77,048 KB
testcase_22 AC 240 ms
84,876 KB
testcase_23 AC 210 ms
83,628 KB
testcase_24 AC 50 ms
63,996 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def LI(): return list(map(int, sys.stdin.readline().split()))
inf = 10**9

from array import array

n, k = LI()
aa = LI()
dp = [[[array('i',[-inf]*n) for _ in range(n)] for _ in range(2)] for _ in range(k+1)]

for i, a in enumerate(aa):
    dp[k][0][i][i] = a*k

def chmax(i, l, r, j, val):
    if val > dp[i][j][l][r]: dp[i][j][l][r] = val

for i in range(k, 0, -1):
    for l in range(n):
        for r in range(l, n):
            for j in range(2):
                pre = dp[i][j][l][r]
                if pre == -inf: continue
                # 左に出る
                d = r-l+1 if j else 1
                if l-1 >= 0 and i-d >= 0: chmax(i-d, l-1, r, 0, pre+(i-d)*aa[l-1])
                # 右に出る
                d = 1 if j else r-l+1
                if r+1 < n and i-d >= 0: chmax(i-d, l, r+1, 1, pre+(i-d)*aa[r+1])
                # 動かない
                if l != r: chmax(i-2, l, r, j, pre)

ans = [-inf]*n
for j in range(n):
    for r in range(j,n):
        for i in range(k):
            if j-i<0:break
            ans[j]=max(ans[j],dp[i][0][j-i][r])
    for l in range(j+1):
        for i in range(k):
            if j+i==n:break
            ans[j]=max(ans[j],dp[i][1][l][j+i])

print(*ans,sep="\n")
0