結果

問題 No.1117 数列分割
ユーザー 👑 NachiaNachia
提出日時 2021-01-04 15:42:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,041 ms / 3,000 ms
コード長 947 bytes
コンパイル時間 2,622 ms
コンパイル使用メモリ 216,828 KB
実行使用メモリ 151,296 KB
最終ジャッジ日時 2024-10-15 01:19:39
合計ジャッジ時間 23,321 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
7,424 KB
testcase_01 AC 4 ms
7,424 KB
testcase_02 AC 5 ms
7,424 KB
testcase_03 AC 84 ms
24,192 KB
testcase_04 AC 78 ms
22,272 KB
testcase_05 AC 5 ms
7,552 KB
testcase_06 AC 6 ms
8,576 KB
testcase_07 AC 5 ms
7,936 KB
testcase_08 AC 54 ms
19,456 KB
testcase_09 AC 17 ms
11,264 KB
testcase_10 AC 54 ms
19,328 KB
testcase_11 AC 368 ms
53,376 KB
testcase_12 AC 435 ms
57,600 KB
testcase_13 AC 768 ms
78,336 KB
testcase_14 AC 748 ms
78,208 KB
testcase_15 AC 1,036 ms
96,896 KB
testcase_16 AC 1,095 ms
89,984 KB
testcase_17 AC 36 ms
15,744 KB
testcase_18 AC 1,664 ms
151,168 KB
testcase_19 AC 1,953 ms
151,168 KB
testcase_20 AC 860 ms
76,672 KB
testcase_21 AC 2,041 ms
151,296 KB
testcase_22 AC 2,017 ms
149,120 KB
testcase_23 AC 1,972 ms
149,248 KB
testcase_24 AC 1,997 ms
147,200 KB
testcase_25 AC 1,993 ms
146,944 KB
testcase_26 AC 5 ms
7,424 KB
testcase_27 AC 25 ms
12,416 KB
testcase_28 AC 23 ms
12,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using LL=long long;
using ULL=unsigned long long;
#define rep(i,n) for(int i=0; i<(n); i++)

const LL INF=1000000000000000;

int N,K,M;
LL A[2][3001];
LL dp[2][3001][3001];
deque<int> dpw[2][3001];

int main(){
	cin>>N>>K>>M;
	rep(i,N) cin>>A[0][i]; A[0][N]=0;
	for(int i=N-1; i>=0; i--) A[0][i]+=A[0][i+1];
	rep(i,N+1) A[1][i]=-A[0][i];

	rep(t,2) rep(i,N+1) rep(k,K+1) dp[t][k][i]=-INF;
	rep(t,2) dp[t][0][0]=A[t][0];
	rep(t,2) rep(k,K+1) dpw[t][k]={0};

	rep(i,N) rep(k,K){
		LL tmp = -INF;
		rep(t,2){
			if(dpw[t][k].size()) if(dpw[t][k].front()<=i-M) dpw[t][k].pop_front();
			if(dpw[t][k].size()) tmp=max(tmp,dp[t][k][dpw[t][k].front()]-A[t][i+1]);
		}
		rep(t,2){
			dp[t][k+1][i+1]=tmp+A[t][i+1];
			while(dpw[t][k+1].size()) if(dp[t][k+1][dpw[t][k+1].back()]<=dp[t][k+1][i+1]) dpw[t][k+1].pop_back(); else break;
			dpw[t][k+1].push_back(i+1);
		}
	}

	cout<<dp[0][K][N]<<endl;

	return 0;
}
0