結果

問題 No.2139 K Consecutive Sushi
ユーザー baLoon8128baLoon8128
提出日時 2022-12-05 00:53:55
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 896 bytes
コンパイル時間 3,850 ms
コンパイル使用メモリ 264,552 KB
実行使用メモリ 11,776 KB
最終ジャッジ日時 2024-11-27 19:52:45
合計ジャッジ時間 6,681 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using ll = long long;
using vi = vector<int>;
using vvi = vector<vector<int>>;
using pii = pair<int, int>;
#define rep(i, n) for (int i = 0; i < (int)(n); ++i)
#define repr(i, n) for (int i = (int)(n - 1); i >= 0; --i)

ll op(ll x, ll y) { return max(x, y); }
ll e() { return 0; }
ll mapping(ll f, ll x) { return f + x; }
ll composition(ll f, ll g) { return f + g; }
ll id() { return 0; }

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int n, K;
    cin >> n >> K;
    vi a(n);
    rep(i, n) cin >> a[i];
    lazy_segtree<ll, op, e, ll, mapping, composition, id> seg(n + 1);
    rep(i, n) {
        seg.apply(i + 1, seg.prod(max(0, i + 1 - K), i + 1));
        seg.apply(0, i + 1, a[i]);
    }
    ll ret = seg.prod(n - K + 1, n + 1);
    cout << ret << endl;
    return 0;
}
0