結果

問題 No.1247 ブロック登り
ユーザー momoyuumomoyuu
提出日時 2023-09-24 14:32:06
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,118 ms / 3,000 ms
コード長 2,037 bytes
コンパイル時間 3,016 ms
コンパイル使用メモリ 252,420 KB
実行使用メモリ 442,156 KB
最終ジャッジ日時 2024-07-17 15:13:35
合計ジャッジ時間 18,276 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 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 3 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 16 ms
19,456 KB
testcase_08 AC 16 ms
19,456 KB
testcase_09 AC 6 ms
8,832 KB
testcase_10 AC 10 ms
13,056 KB
testcase_11 AC 1,107 ms
441,728 KB
testcase_12 AC 1,013 ms
441,872 KB
testcase_13 AC 1,118 ms
442,064 KB
testcase_14 AC 1,075 ms
442,120 KB
testcase_15 AC 1,078 ms
441,916 KB
testcase_16 AC 1,026 ms
442,104 KB
testcase_17 AC 1,061 ms
442,156 KB
testcase_18 AC 928 ms
422,208 KB
testcase_19 AC 370 ms
440,768 KB
testcase_20 AC 312 ms
440,668 KB
testcase_21 AC 271 ms
440,320 KB
testcase_22 AC 12 ms
11,136 KB
testcase_23 AC 9 ms
9,344 KB
testcase_24 AC 3 ms
5,376 KB
testcase_25 AC 1,032 ms
441,984 KB
testcase_26 AC 1,015 ms
442,008 KB
testcase_27 AC 1,036 ms
442,048 KB
testcase_28 AC 1,017 ms
441,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;


ll dp[2][310][310][310];
int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    ll n,k;
    cin>>n>>k;
    vector<ll> a(n);
    for(int i = 0;i<n;i++) cin>>a[i];
    vector<ll> ans(n,-1e18);
    for(int i = 0;i<2;i++) for(int j = 0;j<n;j++) for(int l = 0;l<n;l++) for(int p = 0;p<=k;p++) dp[i][j][l][p] = -1e18;
    for(int i = 0;i<n;i++){
        dp[0][i][i][k-1] = a[i] * k;
        dp[1][i][i][k-1] = a[i] * k;
    }
    for(int i = k;i>=0;i--){
        for(int j = 0;j<n;j++){
            for(int l = j;l<n;l++){
                if(j+1<=l){
                    if(i-2>=0){
                        dp[0][j][l][i-2] = max(dp[0][j][l][i-2],dp[0][j][l][i]);
                        dp[1][j][l][i-2] = max(dp[1][j][l][i-2],dp[1][j][l][i]);
                    }
                    if(i%2==1){
                        ans[l] = max(ans[l],dp[0][j][l][i]);
                        ans[j] = max(ans[j],dp[1][j][l][i]);
                    }
                }
                if(i==0){
                    if(l+1<n) ans[l+1] = max(ans[l+1],dp[0][j][l][i]);
                    if(j-1>=0) ans[j-1] = max(ans[j-1],dp[1][j][l][i]);
                }
                if(l+1<n){
                    dp[0][j][l+1][i-1] = max(dp[0][j][l+1][i-1],dp[0][j][l][i]+i*a[l+1]);
                }
                if(j-1>=0){
                    dp[1][j-1][l][i-1] = max(dp[1][j-1][l][i-1],dp[1][j][l][i]+i*a[j-1]);
                }
                int need = l - j;
                if(i-need>=0){
                    dp[0][j][l][i-need] = max(dp[0][j][l][i-need],dp[1][j][l][i]);
                    dp[1][j][l][i-need] = max(dp[1][j][l][i-need],dp[0][j][l][i]);
                }
                int res = i + 1;
                if(j+res<n&&j+res<=l+1) ans[j+res] = max(ans[j+res],dp[1][j][l][i]);
                if(l-res>=0&&l-res>=j-1) ans[l-res] = max(ans[l-res],dp[0][j][l][i]);
            }
        }
    }
    for(int i = 0;i<n;i++) cout<<ans[i]<<endl;
    
}

0