結果

問題 No.1117 数列分割
ユーザー okok
提出日時 2020-07-18 09:48:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,356 bytes
コンパイル時間 1,000 ms
コンパイル使用メモリ 96,756 KB
実行使用メモリ 73,984 KB
最終ジャッジ日時 2024-05-07 23:31:39
合計ジャッジ時間 3,488 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
testcase_04 AC 7 ms
8,064 KB
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 AC 137 ms
73,856 KB
testcase_19 AC 129 ms
73,856 KB
testcase_20 WA -
testcase_21 AC 127 ms
73,984 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 2 ms
5,376 KB
testcase_27 WA -
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<iomanip>
#include<cmath>
#include<vector>
#include<algorithm>
#include<utility>
#include<queue>

using namespace std;

#define int long long
#define endl "\n"

constexpr long long INF = (long long)1e18;
constexpr long long MOD = 1'000'000'007; 

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


signed main(){
	cout<<fixed<<setprecision(10);
	
	int N, K, M;
	vector<int> A;
	vector<int> sum;
	vector<vector<int>> dp;
	vector<pair<int,int>> q, q2;
	cin>>N>>K>>M;
	
	A.resize(N);
	dp.resize(N+1, vector<int>(K+1, -INF));
	sum.resize(N+1);
	
	q.resize(N+2);
	q2.resize(N+2);
	
	for(int i = 0; i < N; i++){
		cin>>A[i];
	
		sum[i+1] = sum[i] + A[i];
		
		if(i < M) dp[i][1] = abs(sum[i+1]);
	}

	for(int j = 2; j <= K; j++){
		int f = 0, e = 0;
		int f2 = 0, e2 = 0;
		
		for(int i = j-1; i < N; i++){
			int num = dp[i-1][j-1] - sum[i];
			int num2 = dp[i-1][j-1] + sum[i];
			
			while(e - f > 1 && q[e].second < num) e--;
			q[e] = {i,num}; e++;
			while(e - f > 1 && q[f].first < i - M + 1) f++;
			
			while(e2 - f2 > 1 && q2[e2].second < num2) e2--;
			q2[e2] = {i,num2}; e2++;
			while(e2 - f2 > 1 && q2[f2].first < i - M + 1) f2++;
			
			dp[i][j] = max(q[f].second + sum[i+1], q2[f2].second - sum[i+1]);
		}
	}
	
	cout<<dp[N-1][K]<<endl;
	
	return 0;
}
0