Submission #21822

#TimeUsernameProblemLanguageResultExecution timeMemory
21822dcordbSplit the sequence (APIO14_sequence)C++11
33 / 100
2000 ms86788 KiB
#include <bits/stdc++.h>
using namespace std;

typedef long long int64;
const int MAX = 1e5 + 5;

namespace CH {
	struct rect {
		int64 n, m;
		int id;

		rect() {}

		rect(int64 n, int64 m, int id) : n(n), m(m), id(id) {}

		int64 eval(int64 x) {
			return m * x + n;
		}
	};

	int k, opt;
	rect stk[MAX];

	void init() {
		k = 0, opt = 1;
	}

	bool bad_line(rect l1, rect l2, rect l3) {
		return (l1.n - l3.n) * (l2.m - l1.m) < (l3.m - l1.m) * (l1.n - l2.n);
	}

	void add(rect r) {
		while(k > 1 && bad_line(stk[k - 1], stk[k], r))
			k--;
		stk[++k] = r;
	}

	pair <int64, int> query(int64 x) {
		if(k == 0)
			return { -1, -1 };

		if(opt > k)
			opt = k;

		while(opt < k && stk[opt].eval(x) <= stk[opt + 1].eval(x))
			opt++;

		return { stk[opt].eval(x), stk[opt].id };
	}
}

int n, k, p[MAX][205];
int64 t[MAX], prv[MAX], curr[MAX];
vector <int64> ans;

int main() {
	scanf("%d%d", &n, &k);

	k++;

	for(int i = 1; i <= n; i++) {
		int x; scanf("%d", &x);
		t[i] = t[i - 1] + x;
	}

	memset(prv, -1, sizeof(prv));

	prv[0] = 0;

	for(int l = 1; l <= k; l++) {
		CH::init();
		for(int i = 1; i <= n; i++) {
			if(prv[i - 1] != -1)
				CH::add(CH::rect(prv[i - 1] - t[i - 1] * t[i - 1], t[i - 1], i - 1));

			auto o = CH::query(2LL * t[i] - t[n]);
			curr[i] = o.first;

			if(curr[i] != -1) {
				curr[i] += t[i] * t[n] - t[i] * t[i];
				p[i][l] = o.second;
			}
		}

		for(int i = 0; i <= n; i++) {
			prv[i] = curr[i];
			curr[i] = -1;
		}
	}

	printf("%lld\n", prv[n] / 2);

	int x = n, y = k;

	while(1) {
		if(x == 0)
			break;

		ans.push_back(x);
		x = p[x][y];
		y--;
	}

	reverse(ans.begin(), ans.end());
	ans.pop_back();

	for(int i = 0; i < (int) ans.size(); i++) {
		printf("%lld", ans[i]);
		printf(i == (int) ans.size() - 1 ? "\n" : " ");
	}

	return 0;
}

Compilation message (stderr)

sequence.cpp: In function 'int main()':
sequence.cpp:57:23: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%d%d", &n, &k);
                       ^
sequence.cpp:62:25: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   int x; scanf("%d", &x);
                         ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...