結果

問題 No.2139 K Consecutive Sushi
ユーザー ransewhaleransewhale
提出日時 2022-12-03 13:20:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 1,050 bytes
コンパイル時間 675 ms
コンパイル使用メモリ 83,924 KB
実行使用メモリ 14,276 KB
最終ジャッジ日時 2024-05-05 19:22:40
合計ジャッジ時間 3,108 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,040 KB
testcase_01 AC 4 ms
7,168 KB
testcase_02 AC 4 ms
7,040 KB
testcase_03 AC 84 ms
14,152 KB
testcase_04 AC 85 ms
14,276 KB
testcase_05 AC 84 ms
14,156 KB
testcase_06 AC 84 ms
14,156 KB
testcase_07 AC 85 ms
14,156 KB
testcase_08 AC 99 ms
10,352 KB
testcase_09 AC 101 ms
10,496 KB
testcase_10 AC 96 ms
12,108 KB
testcase_11 AC 97 ms
12,140 KB
testcase_12 AC 99 ms
10,240 KB
testcase_13 AC 4 ms
7,040 KB
testcase_14 AC 4 ms
7,040 KB
testcase_15 AC 3 ms
7,040 KB
testcase_16 AC 3 ms
6,912 KB
testcase_17 AC 3 ms
7,040 KB
testcase_18 AC 4 ms
7,040 KB
testcase_19 AC 4 ms
7,168 KB
testcase_20 AC 3 ms
6,912 KB
testcase_21 AC 3 ms
6,912 KB
testcase_22 AC 4 ms
6,912 KB
testcase_23 AC 10 ms
7,680 KB
testcase_24 AC 30 ms
9,084 KB
testcase_25 AC 57 ms
12,976 KB
testcase_26 AC 11 ms
7,680 KB
testcase_27 AC 25 ms
8,792 KB
testcase_28 AC 26 ms
8,840 KB
testcase_29 AC 14 ms
7,808 KB
testcase_30 AC 32 ms
10,216 KB
testcase_31 AC 74 ms
13,784 KB
testcase_32 AC 15 ms
7,808 KB
testcase_33 AC 68 ms
12,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0