結果

問題 No.1117 数列分割
ユーザー leaf_1415leaf_1415
提出日時 2020-07-17 23:05:41
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 3,123 bytes
コンパイル時間 862 ms
コンパイル使用メモリ 90,392 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-07 11:41:30
合計ジャッジ時間 34,998 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 272 ms
6,944 KB
testcase_04 AC 255 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 5 ms
6,940 KB
testcase_07 AC 4 ms
6,944 KB
testcase_08 AC 190 ms
6,944 KB
testcase_09 AC 63 ms
6,940 KB
testcase_10 AC 189 ms
6,944 KB
testcase_11 AC 829 ms
6,940 KB
testcase_12 AC 1,076 ms
6,940 KB
testcase_13 AC 1,262 ms
6,940 KB
testcase_14 AC 1,382 ms
6,944 KB
testcase_15 AC 1,995 ms
6,944 KB
testcase_16 AC 2,218 ms
6,940 KB
testcase_17 AC 193 ms
6,940 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 1,796 ms
6,944 KB
testcase_21 AC 2,998 ms
6,940 KB
testcase_22 AC 2,991 ms
6,944 KB
testcase_23 AC 2,979 ms
6,940 KB
testcase_24 AC 2,896 ms
6,940 KB
testcase_25 AC 2,947 ms
6,948 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 124 ms
6,940 KB
testcase_28 AC 122 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:133:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
  133 |         scanf("%d %d %d", &n, &k, &m);
      |         ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
main.cpp:134:42: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
  134 |         for(int i = 1; i <= n; i++) scanf("%lld", &a[i]); //cin >> a[i];
      |                                     ~~~~~^~~~~~~~~~~~~~~

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <cmath>
#include <ctime>
#include <cstdlib>
#include <cassert>
#include <vector>
#include <list>
#include <stack>
#include <queue>
#include <deque>
#include <map>
#include <set>
#include <bitset>
#include <string>
#include <algorithm>
#include <utility>
#define llint long long
#define inf 1e18
#define rep(x, s, t) for(llint (x) = (s); (x) < (t); (x)++)
#define Rep(x, s, t) for(llint (x) = (s); (x) <= (t); (x)++)
#define chmin(x, y) (x) = min((x), (y))
#define chmax(x, y) (x) = max((x), (y))
#define mod 998244353

using namespace std;
typedef pair<llint, llint> P;

// range-add, range-min query
 
struct LazySegTree{
	int size;
	vector<llint> seg, seg2, delay;
	
	LazySegTree(){}
	LazySegTree(int size){
		this->size = size;
		seg.resize(1<<(size+1));
		seg2.resize(1<<(size+1));
		delay.resize(1<<(size+1));
	}
	
	void init()
	{
		for(int i = 0; i < (1<<(size+1)); i++){
			seg[i] = -inf, seg2[i] = -inf;
			delay[i] = 0;
		}
	}
	
	void eval(int l, int r, int k)
	{
		if(delay[k]){
			seg[k] += delay[k];  //総和クエリのときは区間幅を乗じる必要がある
			seg2[k] -= delay[k];  //総和クエリのときは区間幅を乗じる必要がある
			if(l < r){
				delay[k*2] += delay[k];
				delay[k*2+1] += delay[k];
			}
			delay[k] = 0;
		}
	}
	
	void update(int i, llint val)
	{
		int l = 0, r = (1<<size)-1, k = 1;
		eval(l, r, k);
		for(int j = size-1; j >= 0; j--){
			k <<= 1;
			if(i & (1<<j)){
				k++;
				r = (l+r)/2;
			}
			else l = (l+r)/2+1;
			eval(l, r, k);
		}
		
		i += (1 << size);
		seg[i] = seg2[i] = val;
		while(i > 1){
			i /= 2;
			seg[i] = max(seg[i*2], seg[i*2+1]);
			seg2[i] = max(seg2[i*2], seg2[i*2+1]);
		}
	}
	
	void add(int a, int b, int k, int l, int r, llint val)
	{
		eval(l, r, k);
		
		if(b < l || r < a) return;
		if(a <= l && r <= b){
			delay[k] += val;
			eval(l, r, k);
			return;
		}
		add(a, b, k*2, l, (l+r)/2, val);
		add(a, b, k*2+1, (l+r)/2+1, r, val);
		seg[k] = max(seg[k*2], seg[k*2+1]);
		seg2[k] = max(seg2[k*2], seg2[k*2+1]);
	}
	void add(int a, int b, llint val){
		if(a > b) return;
		add(a, b, 1, 0, (1<<size)-1, val);
	}
 
	llint query(int a, int b, int k, int l, int r)
	{
		eval(l, r, k);
		
		if(b < l || r < a) return -inf;
		if(a <= l && r <= b) return max(seg[k], seg2[k]);
		llint lval = query(a, b, k*2, l, (l+r)/2);
		llint rval = query(a, b, k*2+1, (l+r)/2+1, r);
		return max(lval, rval);
	}
	llint query(int a, int b)
	{
		return query(a, b, 1, 0, (1<<size)-1);
	}
};

int n, k, m;
LazySegTree seg[2];
llint a[3005];

int main(void)
{
	//ios::sync_with_stdio(0);
	//cin.tie(0);
	
	//cin >> n >> k >> m;
	scanf("%d %d %d", &n, &k, &m);
	for(int i = 1; i <= n; i++) scanf("%lld", &a[i]); //cin >> a[i];
	
	for(int i = 0; i < 2; i++){
		seg[i] = LazySegTree(12), seg[i].init();
	}
	
	seg[0].update(0, 0);
	for(int i = 1; i <= k; i++){
		if(i <= 2) seg[i&1].update(0, -inf);
		for(int j = 1; j <= n; j++){
			seg[(i-1)&1].add(0, j-1, a[j]);
			llint tmp = seg[(i-1)&1].query(max(0, j-m), j-1);
			seg[i&1].update(j, tmp);
		}
	}
	cout << seg[k&1].query(n, n) << endl;
	
	return 0;
}
0