結果

問題 No.1247 ブロック登り
ユーザー 👑 tute7627tute7627
提出日時 2020-10-19 21:41:40
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 912 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 299,180 KB
最終ジャッジ日時 2024-07-21 08:09:20
合計ジャッジ時間 6,361 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,524 KB
testcase_01 AC 37 ms
52,608 KB
testcase_02 AC 40 ms
52,480 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 56 ms
64,000 KB
testcase_05 AC 52 ms
61,824 KB
testcase_06 AC 39 ms
51,968 KB
testcase_07 AC 202 ms
80,020 KB
testcase_08 AC 199 ms
80,016 KB
testcase_09 AC 169 ms
78,328 KB
testcase_10 AC 171 ms
78,336 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 341 ms
112,260 KB
testcase_20 AC 238 ms
91,516 KB
testcase_21 AC 56 ms
67,236 KB
testcase_22 AC 233 ms
83,076 KB
testcase_23 AC 217 ms
82,448 KB
testcase_24 AC 44 ms
60,524 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
権限があれば一括ダウンロードができます

ソースコード

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)
inf2 =  -inf // 2
for i in range(k,-1,-1):
    for j in range(n):
        for o in range(n):
            if dp[i][j][o] <= inf2:continue
            v=dp[i][j][o]
            d=abs(j-o)
            if d <= i:dp[i-d][o][j] = max(dp[i-d][o][j], v)
            if j!=o and i>=2 :dp[i-2][j][o] = max(dp[i-2][j][o], v)
            if j<=o and j>0 and i>0: dp[i-1][j-1][o] = max(dp[i-1][j-1][o],v+(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],v+(i-1)*a[j+1])
            if j<=o and j+i<=o:ret[j+i] = max(ret[j+i], v)
            if j>o and j-i>=o:ret[j-i]=max(ret[j-i],v)
for x in ret:
    print(x)   
    
                                              
            
0