結果

問題 No.1247 ブロック登り
ユーザー 👑 tute7627tute7627
提出日時 2020-10-19 20:49:45
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 918 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 299,760 KB
最終ジャッジ日時 2024-07-21 08:05:09
合計ジャッジ時間 6,268 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
57,600 KB
testcase_01 AC 34 ms
52,096 KB
testcase_02 AC 37 ms
52,736 KB
testcase_03 AC 34 ms
51,712 KB
testcase_04 AC 59 ms
67,200 KB
testcase_05 AC 51 ms
63,488 KB
testcase_06 AC 33 ms
52,096 KB
testcase_07 AC 212 ms
80,040 KB
testcase_08 AC 250 ms
80,460 KB
testcase_09 AC 187 ms
78,636 KB
testcase_10 AC 206 ms
79,464 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 539 ms
112,832 KB
testcase_20 AC 348 ms
92,552 KB
testcase_21 AC 92 ms
77,364 KB
testcase_22 AC 236 ms
83,416 KB
testcase_23 AC 231 ms
81,776 KB
testcase_24 AC 51 ms
61,312 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
a = list(map(int, input().split()))
inf = 10**9
dp = [[[-inf]*(n) for _ in range(n)] for _ in range(k+1)]
for i in range(n):
    dp[k][i][i] = a[i] * k;
ret = [-inf] * (n)
#for _ in range(n):ret.append(-inf)
for i in range(k,-1,-1):
    for j in range(n):
        for o in range(n):
            if abs(j-o) <= i:dp[i-abs(j-o)][o][j] = max(dp[i-abs(j-o)][o][j], dp[i][j][o])
            if j!=o and i>=2 :dp[i-2][j][o] = max(dp[i-2][j][o], dp[i][j][o])
            if j<=o and j>0 and i>0: dp[i-1][j-1][o] = max(dp[i-1][j-1][o],dp[i][j][o]+(i-1)*a[j-1])
            if j>=o and j<n-1 and i>0: dp[i-1][j+1][o] = max(dp[i-1][j+1][o],dp[i][j][o]+(i-1)*a[j+1])
            if j<=o and j+i<=o:ret[j+i] = max(ret[j+i], dp[i][j][o])
            if j>o and j-i>=o:ret[j-i]=max(ret[j-i],dp[i][j][o])
for x in ret:
    print(x)   
    
                                              
            
0