結果

問題 No.2139 K Consecutive Sushi
ユーザー 👑 rin204rin204
提出日時 2022-12-03 00:07:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 892 bytes
コンパイル時間 2,348 ms
コンパイル使用メモリ 207,652 KB
実行使用メモリ 12,544 KB
最終ジャッジ日時 2024-05-05 19:21:19
合計ジャッジ時間 4,995 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 124 ms
12,416 KB
testcase_04 AC 133 ms
12,288 KB
testcase_05 AC 131 ms
12,544 KB
testcase_06 AC 123 ms
12,416 KB
testcase_07 AC 126 ms
12,544 KB
testcase_08 AC 128 ms
12,544 KB
testcase_09 AC 137 ms
12,416 KB
testcase_10 AC 144 ms
12,288 KB
testcase_11 AC 131 ms
12,288 KB
testcase_12 AC 127 ms
12,288 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 3 ms
5,376 KB
testcase_23 AC 12 ms
5,376 KB
testcase_24 AC 40 ms
5,632 KB
testcase_25 AC 90 ms
11,264 KB
testcase_26 AC 12 ms
5,376 KB
testcase_27 AC 34 ms
5,376 KB
testcase_28 AC 34 ms
5,504 KB
testcase_29 AC 16 ms
5,376 KB
testcase_30 AC 44 ms
7,296 KB
testcase_31 AC 115 ms
12,032 KB
testcase_32 AC 18 ms
5,376 KB
testcase_33 AC 121 ms
12,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// #pragma GCC target("avx2")
// #pragma GCC optimize("O3")
// #pragma GCC optimize("unroll-loops")
#include<bits/stdc++.h>
#include<atcoder/lazysegtree>
using namespace std;
using namespace atcoder;
using ll = long long;
const ll inf = 1LL << 60;

using S = ll;
S op(S l, S r){
	return max(l, r);
}
S e(){
	return -inf;
}
using F = ll;
S mapping(F f, S x){
	return f + x;
}
F composition(F l, F r){
	return l + r;
}
F id(){
	return 0;
}

void solve(){    
    int n, k;
	cin >> n >> k;
	vector<ll> A(n);
	for(auto &a : A) cin >> a;
	lazy_segtree<S, op, e, F, mapping, composition, id> seg(n + 1);
	seg.set(0, 0);
	for(int i = 1; i <= n; i++){
		ll a = A[i - 1];
		seg.set(i, seg.prod(0, i));
		seg.apply(max(0, i - k + 1), i, a);
	}
	cout << seg.all_prod() << endl;
}

int main(){
    cin.tie(0)->sync_with_stdio(0);
    int t;
    t = 1;
    // cin >> t;
    while(t--) solve();
}
    
    
0