# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
20893 | Supernova | Split the sequence (APIO14_sequence) | C++11 | 0 ms | 87848 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <stdio.h>
#define N 100010
#define INF 999999999999999999
struct Line {
long long m, b;
int path;
} stack[N];
int n, m, sw, stack_len, path[210][N];
long long d[2][N], s[N];
long double cross(Line x, Line y) {
if (x.m == y.m) return -INF;
return (y.b - x.b) / (x.m - y.m);
}
void push(Line line) {
if (line.m == 0) stack_len = 0, sw = 1;
while (stack_len > sw && cross(stack[stack_len - 1], stack[stack_len]) > cross(stack[stack_len], line)) stack_len--;
stack[++stack_len] = line;
}
long long get(long long x) {
while (sw < stack_len && stack[sw].m*x + stack[sw].b <= stack[sw + 1].m*x + stack[sw + 1].b) sw++;
return stack[sw].m*x + stack[sw].b;
}
int main() {
int x;
freopen("13.in", "r", stdin);
scanf("%d %d", &n, &m), m++;
for (int i = 1; i <= n; i++)
scanf("%d", &x), s[i] = s[i - 1] + (long long)x;
for (int i = 1; i <= n; i++) d[1][i] = 0;
for (int i = 2; i <= m; i++) {
stack[sw = stack_len = 1] = { 0,-INF };
for (int j = i - 1; j <= n; j++) {
d[i % 2][j] = get(s[j]), path[i][j] = stack[sw].path;
push({ s[j], d[(i + 1) % 2][j] - s[j] * s[j], j });
}
} printf("%lld\n", d[m % 2][n]);
for (int i = m, k = path[m][n]; i >= 2; k = path[--i][k]) printf("%d ", k);
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |