# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
170294 | Kastanda | Split the sequence (APIO14_sequence) | C++11 | 1500 ms | 81860 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.
// In The Name Of The Queen
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N = 100005, K = 209;
int n, k, lvl, P[K][N];
ll A[N], dp[2][N];
inline ll Get(int l, int r)
{
return ((A[r] - A[l]) * (A[r] - A[l]));
}
void Solve(int l, int r, int le, int ri, int j)
{
if (r < l) return ;
int md = l + r >> 1, opt = -1;
dp[j][md] = (ll)2e18;
for (int i = le; i <= min(ri, md); i ++)
if (dp[j][md] > dp[!j][i - 1] + Get(i - 1, md))
dp[j][md] = dp[!j][i - 1] + Get(i - 1, md), opt = i;
P[lvl][md] = opt - 1;
Solve(l, md - 1, le, opt, j);
Solve(md + 1, r, opt, ri, j);
}
int main()
{
scanf("%d%d", &n, &k); k ++;
for (int i = 1; i <= n; i ++)
scanf("%lld", &A[i]), A[i] += A[i - 1];
memset(dp, 63, sizeof(dp));
dp[0][0] = 0;
for (lvl = 1; lvl <= k; lvl ++)
Solve(1, n, 1, n, lvl & 1);
printf("%lld\n", (A[n] * A[n] - dp[k & 1][n]) / 2);
vector < int > V;
for (; k > 1; k --)
V.push_back(P[k][n]), n = P[k][n];
reverse(V.begin(), V.end());
for (int i : V)
printf("%d ", i);
return 0;
}
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... |