結果

問題 No.2139 K Consecutive Sushi
ユーザー _yurimoir_yurimoir
提出日時 2022-12-16 20:50:26
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 596 bytes
コンパイル時間 3,070 ms
コンパイル使用メモリ 250,240 KB
実行使用メモリ 814,848 KB
最終ジャッジ日時 2024-11-16 01:49:31
合計ジャッジ時間 30,368 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 WA -
testcase_03 MLE -
testcase_04 MLE -
testcase_05 MLE -
testcase_06 MLE -
testcase_07 MLE -
testcase_08 WA -
testcase_09 WA -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 WA -
testcase_13 AC 2 ms
6,688 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 2 ms
6,692 KB
testcase_17 AC 2 ms
6,692 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 MLE -
testcase_25 MLE -
testcase_26 MLE -
testcase_27 MLE -
testcase_28 MLE -
testcase_29 MLE -
testcase_30 MLE -
testcase_31 MLE -
testcase_32 MLE -
testcase_33 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int main(){
    ll n,k;
    cin>>n>>k;
    vector<ll> a(n);
    for(auto& x:a)cin>>x;
    vector<vector<ll>> dp(n+1,vector<ll>(k,0));
    for(int i=0;i<n;i++){
        for(int j=0;j<=min((ll)i,k-1);j++){
            if(j==k-1){
                dp[i+1][0]=max(dp[i+1][0],dp[i][j]);
            }else{
                dp[i+1][j+1]=max(dp[i+1][j+1],dp[i][j]+a[i]);
                dp[i+1][j]=max(dp[i+1][j],dp[i][j]);
            }
        }
    }
    ll ans=0;
    for(int i=0;i<k;i++)ans=max(ans,dp[n][i]);
    cout<<ans<<endl;
}
0