結果

問題 No.2139 K Consecutive Sushi
ユーザー shobonvipshobonvip
提出日時 2022-12-05 21:16:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 689 bytes
コンパイル時間 4,636 ms
コンパイル使用メモリ 263,368 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-05-05 19:23:19
合計ジャッジ時間 6,966 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 105 ms
10,496 KB
testcase_04 AC 105 ms
10,436 KB
testcase_05 AC 105 ms
10,496 KB
testcase_06 AC 105 ms
10,620 KB
testcase_07 AC 106 ms
10,624 KB
testcase_08 AC 97 ms
10,496 KB
testcase_09 AC 99 ms
10,496 KB
testcase_10 AC 102 ms
10,464 KB
testcase_11 AC 101 ms
10,480 KB
testcase_12 AC 94 ms
10,416 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 1 ms
5,376 KB
testcase_18 AC 3 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 11 ms
5,376 KB
testcase_24 AC 35 ms
5,376 KB
testcase_25 AC 70 ms
9,344 KB
testcase_26 AC 12 ms
5,376 KB
testcase_27 AC 29 ms
5,376 KB
testcase_28 AC 31 ms
5,376 KB
testcase_29 AC 16 ms
5,376 KB
testcase_30 AC 39 ms
6,400 KB
testcase_31 AC 94 ms
10,140 KB
testcase_32 AC 17 ms
5,376 KB
testcase_33 AC 85 ms
10,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

typedef modint998244353 mint;
typedef long long ll;

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

ll e(){
	return (ll)1e18;
}

int main(){
	/* 
	とるものの和の最大値 = 寿司全部 - (とらないものの最小値)
	RMQとかで
	*/
	int n, k; cin >> n >> k;
	vector<ll> a(n);
	for (int i=0; i<n; i++){
		cin >> a[i];
	}
	segtree<ll,op,e> seg(n+1);
	ll ans = 0;
	seg.set(0, 0);
	for (int i=0; i<n; i++){
		//cout << seg.prod(max(0, i+1-k), i+1) + a[i] << endl;
		seg.set(i+1, seg.prod(max(0, i+1-k), i+1) + a[i]);
		ans += a[i];
	}
	cout << ans - seg.prod(max(0, n+1-k), n+1) << endl;
}
0