結果

問題 No.2139 K Consecutive Sushi
ユーザー ぷらぷら
提出日時 2022-12-03 00:19:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 272 ms / 2,000 ms
コード長 1,780 bytes
コンパイル時間 2,509 ms
コンパイル使用メモリ 208,636 KB
実行使用メモリ 12,244 KB
最終ジャッジ日時 2024-05-05 19:21:38
合計ジャッジ時間 7,246 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 234 ms
12,160 KB
testcase_04 AC 272 ms
12,244 KB
testcase_05 AC 239 ms
12,160 KB
testcase_06 AC 222 ms
12,160 KB
testcase_07 AC 240 ms
12,160 KB
testcase_08 AC 249 ms
12,160 KB
testcase_09 AC 250 ms
12,160 KB
testcase_10 AC 258 ms
12,160 KB
testcase_11 AC 253 ms
12,160 KB
testcase_12 AC 247 ms
12,160 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 4 ms
5,376 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 4 ms
5,376 KB
testcase_23 AC 23 ms
5,376 KB
testcase_24 AC 77 ms
5,504 KB
testcase_25 AC 182 ms
11,904 KB
testcase_26 AC 22 ms
5,376 KB
testcase_27 AC 64 ms
5,504 KB
testcase_28 AC 62 ms
5,504 KB
testcase_29 AC 31 ms
5,376 KB
testcase_30 AC 85 ms
7,552 KB
testcase_31 AC 227 ms
12,092 KB
testcase_32 AC 32 ms
5,376 KB
testcase_33 AC 228 ms
12,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

template <typename T>
struct LazySegmentTree {
    int n;
    vector<T> dat;
    vector<T>lazy;
    LazySegmentTree() {};
    LazySegmentTree(int N) {
        n = 1;
        while(n < N) {
            n *= 2;
        }
        dat.resize(n*2,0);
        lazy.resize(n*2,0);
    }
    void eval(int k,int l,int r) {
        if(lazy[k] == 0) return;
        if(k < n) {
            lazy[k*2] += lazy[k];
            lazy[k*2+1] += lazy[k];
        }
        dat[k] += lazy[k];
        lazy[k] = 0;
    }
    void update(int a, int b, T x, int k, int l, int r) {
        eval(k,l,r);
        if(a <= l && r <= b) {
            lazy[k] += x;
            eval(k,l,r);
        }
        else if(a < r && l < b) {
            update(a, b, x, k*2, l, (l+r)/2);
            update(a, b, x, k*2+1, (l+r)/2, r);
            dat[k] = max(dat[k*2],dat[k*2+1]);
        }
    }
    void update(int a, int b, T x) {//[a,b)
        update(a, b, x, 1, 0, n);
    }
    T query_sub(int a, int b, int k, int l, int r) {
        eval(k,l,r);
        if (r <= a || b <= l) {
            return 0;
        }
        else if (a <= l && r <= b) {
            return dat[k];
        }
        else {
            T vl = query_sub(a, b, k*2, l, (l+r)/2);
            T vr = query_sub(a, b, k*2+1, (l+r)/2, r);
            return max(vl,vr);
        }
    }
    T query(int a, int b) {//[a,b)
        return query_sub(a, b, 1, 0, n);
    }
};


int main() {
    int N,K;
    cin >> N >> K;
    vector<int>A(N);
    LazySegmentTree<long long>Seg(N+1);
    for(int i = 0; i < N; i++) {
        cin >> A[i];
        Seg.update(i+1,i+2,Seg.query(max(i-K+1,0),i+1));
        Seg.update(max(i-K+2,0),i+1,A[i]);
    }
    cout << Seg.query(max(0,N-K+1),N+1) << endl;
}
0