結果

問題 No.2139 K Consecutive Sushi
ユーザー hotman78hotman78
提出日時 2022-12-03 10:13:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 587 bytes
コンパイル時間 2,504 ms
コンパイル使用メモリ 206,708 KB
実行使用メモリ 16,512 KB
最終ジャッジ日時 2024-05-05 19:22:33
合計ジャッジ時間 5,061 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 166 ms
14,720 KB
testcase_04 AC 153 ms
9,984 KB
testcase_05 AC 158 ms
13,696 KB
testcase_06 AC 150 ms
16,512 KB
testcase_07 AC 158 ms
13,824 KB
testcase_08 AC 107 ms
7,936 KB
testcase_09 AC 108 ms
7,936 KB
testcase_10 AC 108 ms
7,936 KB
testcase_11 AC 108 ms
7,936 KB
testcase_12 AC 103 ms
7,936 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 11 ms
5,376 KB
testcase_24 AC 45 ms
6,016 KB
testcase_25 AC 89 ms
7,040 KB
testcase_26 AC 13 ms
5,376 KB
testcase_27 AC 36 ms
5,632 KB
testcase_28 AC 38 ms
6,400 KB
testcase_29 AC 17 ms
5,376 KB
testcase_30 AC 51 ms
6,784 KB
testcase_31 AC 136 ms
10,112 KB
testcase_32 AC 20 ms
5,376 KB
testcase_33 AC 107 ms
12,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;
using lint=long long;
#define rep(i,n) for(int i=0;i<int(n);++i)
int main(){
    int n,k;
    cin>>n>>k;
    vector<lint>a(n);
    rep(i,n)cin>>a[i];
    vector<lint>dp(n+1);
    vector<lint>b(n+1);
    rep(i,n)b[i+1]=b[i]+a[i];
    multiset<lint>s;
    s.emplace(0);
    for(int i=0;i<n;++i){
        dp[i+1]=max(dp[i],*s.rbegin()+b[i+1]);
        s.emplace(dp[i]-b[i+1]);
        if(i==k-2){
            s.erase(s.find(0));
        }if(i>=k-1){
            s.erase(s.find(dp[i-k+1]-b[i-k+2]));
        }
    }
    cout<<dp.back()<<endl;
}
0