結果

問題 No.1117 数列分割
ユーザー okok
提出日時 2020-07-18 17:55:23
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,019 bytes
コンパイル時間 2,826 ms
コンパイル使用メモリ 119,040 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-08 00:56:48
合計ジャッジ時間 4,391 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 2 ms
5,376 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 1 ms
5,376 KB
testcase_27 WA -
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>

using namespace std;

#define endl "\n"

struct fast_io {
	fast_io(){
		std::cin.tie(nullptr);
		std::ios::sync_with_stdio(false);
	};
} fio;

constexpr int MAX = 3100;
	
int dp[MAX][2];
int sum[MAX];
static int qf[MAX], q2f[MAX];
static int qs[MAX], q2s[MAX];

signed main(){
	int N, K, M, A;
	
	cin>>N>>K>>M;
	
	sum[0] = 0;
	
	for(int i = 0; i < N; i++){
		cin>>A;
	
		sum[i+1] = sum[i] + A;
		
		if(i < M) dp[i][1] = abs(sum[i+1]);
	}

	for(int j = 2, k = 0; j <= K; j++, k = !k){
		int f = 0, e = 0, f2 = 0, e2 = 0;
		
		for(int i = j-1; i < N; i++){
			int num = dp[i-1][!k] - sum[i];
			int num2 = dp[i-1][!k] + sum[i];
			
			while(e - f && qs[e-1] < num) e--;
			qf[e] = i;
			qs[e] = num;
			e++;
			while(e - f && qf[f] < i - M + 1) f++;
			
			while(e2 - f2 && q2s[e2-1] < num2) e2--;
			q2f[e2] = i;
			q2s[e2] = num2;
			e2++;
			while(e2 - f2 && q2f[f2] < i - M + 1) f2++;
			
			dp[i][k] = max(qs[f] + sum[i+1], q2s[f2]  - sum[i+1]);
		}
	}
	
	cout<<dp[N-1][K%2]<<endl;
	
	return 0;
}
0