結果
問題 | No.2139 K Consecutive Sushi |
ユーザー | shobonvip |
提出日時 | 2022-12-05 21:16:48 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 105 ms / 2,000 ms |
コード長 | 689 bytes |
コンパイル時間 | 3,827 ms |
コンパイル使用メモリ | 263,516 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-11-27 19:52:37 |
合計ジャッジ時間 | 6,390 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 31 |
ソースコード
#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; }