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;
#define ll long long
#define evaluate(pt, x) (pt.first.first * x + pt.first.second)
const int N = 1e5, K = 205;
int a[N], p[K], n, k, last[N][K];
ll s[N], dp[N][K];
vector<pair<pair<ll, ll>, int>> hull[K];
ll find(int i, int j, ll x) {
for (; p[j] < (int)hull[j].size() - 1; p[j]++) {
if (evaluate(hull[j][p[j]], x) > evaluate(hull[j][p[j] + 1], x))
break;
}
last[i][j + 1] = hull[j][p[j]].second;
return evaluate(hull[j][p[j]], x);
}
bool inter(pair<ll, ll> a, pair<ll, ll> b, pair<ll, ll> c) {
return (a.second - b.second) * (c.first - a.first) > (a.second - c.second) * (b.first - a.first);
}
void insert(int j, pair<pair<ll, ll>, int> nl) {
while (hull[j].size() > 1) {
auto temp = hull[j].back();
hull[j].pop_back();
if (inter(nl.first, temp.first, hull[j].back().first)) {
hull[j].push_back(temp);
break;
}
p[j] = min(p[j], (int)hull[j].size() - 1);
}
hull[j].push_back(nl);
}
int solveTestCase() {
cin >> n >> k;
for (int i = 0; i < n; i++) cin >> a[i];
s[0] = a[0];
for (int i = 1; i < n; i++) s[i] = s[i - 1] + a[i];
for (int i = 0; i < n; i++) insert(0, {{s[i], -s[i] * s[i]}, i});
/*for (int i = 1; i < n; i++) {
for (int j = 1; j <= k && j <= i; j++) {
dp[i][j] = find(i, j - 1, s[i]);
insert(j - 1, {{s[i], dp[i][j - 1] - s[i] * s[i]}, i});
}
insert(min(i, k), {{s[i], dp[i][min(i, k)] - s[i] * s[i]}, i});
}*/
for (int j = 1; j <= k; j++) {
for (int i = j; i < n; i++) {
dp[i][j] = find(i, j - 1, s[i]);
insert(j, {{s[i], dp[i][j] - s[i] * s[i]}, i});
}
hull[j - 1].clear();
}
cout << dp[n - 1][k] << "\n";
for (int i = last[n - 1][k], j = k; j > 0; --j, i = last[i][j]) cout << i + 1 << " ";
}
signed main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
int test = 1;
// cin >> test;
while (test--)
solveTestCase();
}
Compilation message (stderr)
sequence.cpp: In function 'int solveTestCase()':
sequence.cpp:65:1: warning: no return statement in function returning non-void [-Wreturn-type]
}
^
# | 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... |