結果
問題 | No.2139 K Consecutive Sushi |
ユーザー | ransewhale |
提出日時 | 2022-12-03 13:20:11 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 110 ms / 2,000 ms |
コード長 | 1,050 bytes |
コンパイル時間 | 798 ms |
コンパイル使用メモリ | 83,748 KB |
実行使用メモリ | 14,156 KB |
最終ジャッジ日時 | 2024-11-27 19:50:34 |
合計ジャッジ時間 | 3,598 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 31 |
ソースコード
#include <stdio.h> #include <iostream> #include <vector> #include <queue> #include <stack> #include <algorithm> #pragma GCC optimize("O2") using ll = long long int; using P = std::pair<ll, int>; const int INF = (1<<30); const ll INFLL = (1ll<<60); const ll MOD = (ll)(1e9+7); #define l_ength size void mul_mod(ll& a, ll b){ a *= b; a %= MOD; } void add_mod(ll& a, ll b){ a = (a<MOD)?a:(a-MOD); b = (b<MOD)?b:(b-MOD); a += b; a = (a<MOD)?a:(a-MOD); } ll a[225816],s[225816],dp[225816][2]; std::priority_queue<P> pq; int main(void){ int n,m,i; ll ans = -INFLL; std::fill(dp[0],dp[225816],-INFLL); std::cin >> n >> m; --m; dp[0][0] = 0ll; pq.push(P(0ll,0)); for(i=0; i<n; ++i){ std::cin >> a[i]; s[i+1] = s[i] + a[i]; } for(i=1; i<=n; ++i){ while(pq.top().second < i-m){ pq.pop(); } dp[i][1] = pq.top().first + s[i]; dp[i][0] = std::max(dp[i-1][0],dp[i-1][1]); pq.push(P(dp[i][0]-s[i],i)); } for(i=0; i<=n; ++i){ ans = std::max(ans,std::max(dp[i][0],dp[i][1])); } std::cout << ans << std::endl; return 0; }