# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
30160 | Andrei1998 | Split the sequence (APIO14_sequence) | C++14 | 0 ms | 1844 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 <bits/stdc++.h>
using namespace std;
const int NMAX = 100000 + 5;
const int KMAX = 200 + 5;
typedef long long int lint;
const lint INF = 2E18;
int N, K;
int sPart[NMAX];
lint dpBrute[KMAX][NMAX];
int father[KMAX][NMAX];
void brute() {
dpBrute[1][0] = INF;
for (int j = 1; j <= N; ++ j)
dpBrute[1][j] = 1LL * sPart[j] * sPart[j];
for (int i = 2; i <= K; ++ i) {
dpBrute[i & 1][0] = INF;
for (int j = 1; j <= N; ++ j) {
pair <lint, int> sol = {1LL * (sPart[j] - sPart[j - 1]) * (sPart[j] - sPart[j - 1]) + dpBrute[(i - 1) & 1][j - 1], j - 1};
for (int k = 1; k <= j; ++ k)
sol = min(sol, {1LL * (sPart[j] - sPart[k - 1]) * (sPart[j] - sPart[k - 1]) + dpBrute[(i - 1) & 1][k - 1], k - 1});
dpBrute[i & 1][j] = sol.first;
father[i][j] = sol.second;
}
}
}
int main()
{
//freopen("data.in", "r", stdin);
cin >> N >> K;
++ K;
for (int i = 1; i <= N; ++ i) {
int val;
cin >> val;
sPart[i] = val + sPart[i - 1];
}
brute();
cout << (1LL * sPart[N] * sPart[N] - dpBrute[K & 1][N]) / 2 << '\n';
vector <int> sol;
int where = N;
int k = K;
while (father[k][where]) {
sol.push_back(father[k][where]);
where = father[k --][where];
}
reverse(sol.begin(), sol.end());
for (int i = 0; i < sol.size(); ++ i)
cout << sol[i] << " \n"[i + 1 == sol.size()];
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... |