結果

問題 No.1117 数列分割
ユーザー 沙耶花沙耶花
提出日時 2020-07-17 21:53:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,560 bytes
コンパイル時間 2,721 ms
コンパイル使用メモリ 214,880 KB
実行使用メモリ 570,880 KB
最終ジャッジ日時 2024-05-07 11:19:02
合計ジャッジ時間 13,766 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 53 ms
10,240 KB
testcase_04 AC 61 ms
22,656 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 49 ms
27,776 KB
testcase_09 AC 13 ms
6,944 KB
testcase_10 AC 54 ms
39,552 KB
testcase_11 AC 275 ms
121,984 KB
testcase_12 AC 290 ms
52,352 KB
testcase_13 AC 436 ms
195,712 KB
testcase_14 AC 427 ms
171,904 KB
testcase_15 AC 441 ms
64,256 KB
testcase_16 AC 702 ms
120,704 KB
testcase_17 AC 49 ms
33,536 KB
testcase_18 WA -
testcase_19 AC 890 ms
76,800 KB
testcase_20 AC 585 ms
155,904 KB
testcase_21 MLE -
testcase_22 MLE -
testcase_23 MLE -
testcase_24 MLE -
testcase_25 MLE -
testcase_26 AC 2 ms
6,944 KB
testcase_27 WA -
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define modulo 1000000007
#define mod(mod_x) ((((long long)mod_x+modulo))%modulo)
#define Inf 1000000000000000000

template <typename T,typename F>
struct SWAG{
	F func;
	T init_value;
	vector<pair<T,T>> X,Y;
	SWAG(F f,T iv):func(f){
		init_value = iv;
	}
	
	void push_front(T x){
		if(X.empty())X.push_back({x,x});
		else X.push_back({x,func(x,X.back().second)});
	}
	
	void push_back(T x){
		if(Y.empty())Y.push_back({x,x});
		else Y.push_back({x,func(Y.back().second,x)});
	}
	
	void pop_front(){
		if(X.empty()){
			int n = Y.size();
			vector<T> t;
			for(int i=0;i<n/2;i++){
				t.push_back(Y.back().first);
				Y.pop_back();
			}
			while(!Y.empty()){
				push_front(Y.back().first);
				Y.pop_back();
			}
			while(!t.empty()){
				push_back(t.back());
				t.pop_back();
			}
			if(!X.empty())X.pop_back();
		}
		else{
			X.pop_back();
		}
	}
	
	void pop_back(){
		if(Y.empty()){
			int n = X.size();
			stack<T> t;
			for(int i=0;i<n/2;i++){
				t.push_back(X.back().first);
				X.pop_back();
			}
			while(!X.empty()){
				push_back(X.back().first);
				X.pop_back();
			}
			while(!t.empty()){
				push_front(t.back());
				t.pop_back();
			}
			if(!Y.empty())Y.pop_back();
		}
		else{
			Y.pop_back();
		}
	}
	
	T get(){
		T ret = init_value;
		if(!X.empty())ret = func(ret,X.back().second);
		if(!Y.empty())ret = func(ret,Y.back().second);
		return ret;
	}
	
	T front(){
		if(!X.empty())return X.back().first;
		if(!Y.empty())return Y[0].first;
		return init_value;
	}
	
	T back(){
		if(!Y.empty())return Y.back().first;
		if(!X.empty())return X[0].first;
		return init_value;
	}
	
	int size(){
		return X.size()+Y.size();
	}
	
};

int main(){
	int N,K,M;
	cin>>N>>K>>M;
	vector<long long> A(N);
	for(int i=0;i<N;i++)cin>>A[i];
	
	vector<long long> S(N+1,0);
	for(int i=1;i<=N;i++){
		S[i] = S[i-1] + A[i-1];
	}
	
	auto f = [](long long a,long long b){
		return max(a,b);
	};
	
	vector<SWAG<long long,decltype(f)>> Sm(K+1,SWAG<long long,decltype(f)>(f,-Inf)),Sp(K+1,SWAG<long long,decltype(f)>(f,-Inf));
	
	vector<vector<long long>> dp(N+1,vector<long long>(K+1,-Inf));
	dp[0][0] = 0LL;
	Sm[0].push_back(0LL);
	Sp[0].push_back(0LL);
	
	for(int i=1;i<=N;i++){
		for(int j=1;j<=K;j++){
			if(Sm[j-1].size()==0)continue;
			if(i>M){
				Sm[j-1].pop_front();
				Sp[j-1].pop_front();
			}
			dp[i][j] = max(Sm[j-1].get() + S[i],Sp[j-1].get() - S[i]);
		}
		for(int j=1;j<=K;j++){
			Sm[j].push_back(dp[i][j]-S[i]);
			Sp[j].push_back(dp[i][j]+S[i]);
		}
	}
	
	cout<<dp.back().back()<<endl;
	
	return 0;
}
0