結果

問題 No.2139 K Consecutive Sushi
ユーザー trineutrontrineutron
提出日時 2022-12-03 18:51:16
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 586 bytes
コンパイル時間 3,409 ms
コンパイル使用メモリ 250,364 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-11-27 19:51:26
合計ジャッジ時間 5,201 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#include <atcoder/segtree>

using namespace std;
using namespace atcoder;

using S = int64_t;

S op(S a, S b) { return min(a, b); }

S e() { return 1e18; }

int main() {
    int n, k;
    cin >> n >> k;
    vector<int64_t> a(n);
    for (auto &&x : a) {
        cin >> x;
    }

    segtree<S, op, e> seg(n + 1);
    seg.set(0, 0);
    for (int i = 0; i < n; i++) {
        int l = i < k ? 0 : i - k + 1;
        seg.set(i + 1, seg.prod(l, i + 1) + a.at(i));
    }

    cout << reduce(a.begin(), a.end()) - seg.prod(n - k + 1, n + 1) << endl;

    return 0;
}
0