結果
問題 | No.2139 K Consecutive Sushi |
ユーザー | t33f |
提出日時 | 2022-12-03 00:27:11 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 87 ms / 2,000 ms |
コード長 | 704 bytes |
コンパイル時間 | 1,129 ms |
コンパイル使用メモリ | 86,280 KB |
実行使用メモリ | 6,016 KB |
最終ジャッジ日時 | 2024-11-27 19:48:18 |
合計ジャッジ時間 | 3,223 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 31 |
ソースコード
#include <algorithm> #include <numeric> #include <cassert> #include <deque> #include <vector> #include <iostream> using namespace std; int main() { int n, k; cin >> n >> k; vector<int> a(n); for (int i = 0; i < n; i++) cin >> a[i]; deque<int> q; vector<long long> dp(n + 1); q.push_back(0); dp[0] = 0; for (int i = 1; i <= n; ++i) { while (q.front() + k < i) q.pop_front(); assert(!q.empty()); dp[i] = (q.front() == -1 ? 0 : dp[q.front()]) + a[i - 1]; while (!q.empty() && dp[q.back()] >= dp[i]) q.pop_back(); q.push_back(i); } cout << reduce(a.begin(), a.end(), 0LL) - *min_element(dp.rbegin(), dp.rbegin() + k) << '\n'; }