# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
20888 | Supernova | 수열 (APIO14_sequence) | C++11 | 0 ms | 952 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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[210][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) {
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;
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][j] = get(s[j]), path[i][j] = stack[sw].path;
push({ s[j], d[i - 1][j] - s[j] * s[j], j });
}
} printf("%lld\n", d[m][n]);
for (int i = m, k = path[m][n]; i >= 2; i--) printf("%d ", k), k = path[i - 1][k];
}
컴파일 시 표준 에러 (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... |