This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
// IOI 2021
#include <bits/stdc++.h>
using namespace std;
#define endl '\n'
#define ends ' '
#define die(x) return cout << x << endl, 0
#define all(v) v.begin(), v.end()
#define sz(x) (int)(x.size())
void debug_out() { cerr << endl; }
template <typename Head, typename... Tail>
void debug_out(Head H, Tail... T) { cerr << ends << H; debug_out(T...); }
#define debug(...) cerr << "{" << #__VA_ARGS__ << "}:", debug_out(__VA_ARGS__)
typedef long long ll;
typedef pair<int, int> pii;
const int INF = 2e9;
const ll MOD = 1e9 + 7;
////////////////////////////////////////////////////////////////////
const int N = 1e5 + 5, K = 2e2 + 5;
int A[N], PS[N], DP[K][N], OPT[K][N];
ll C(int l, int r) { return 1LL * (PS[r] - PS[l - 1]) * (PS[r] - PS[l - 1]); }
void DQ(int l, int r, int s, int e, int k) {
if (r < l) return;
int md = (l + r) >> 1, &opt = OPT[k][md];
for (int i = s; i <= min(e, md); i++)
if (DP[k][md] > DP[k - 1][i - 1] + C(i, md))
DP[k][md] = DP[k - 1][i - 1] + C(i, md), opt = i;
DQ(l, md - 1, s, opt, k), DQ(md + 1, r, opt, e, k);
}
int main() {
ios::sync_with_stdio(0), cin.tie(0), cout.tie(0);
mt19937 Rnd(time(0));
memset(DP, 63, sizeof DP); DP[0][0] = 0;
int n, k; cin >> n >> k; k++;
for (int i = 1; i <= n; i++) cin >> A[i], PS[i] = PS[i - 1] + A[i];
for (int i = 1; i <= k; i++) DQ(1, n, 0, n, i);
cout << (C(1, n) - DP[k][n]) / 2 << endl;
while (OPT[k][n]) cout << OPT[k][n] - 1 << ends, n = OPT[k][n] - 1, k--;
cout << endl;
return 0;
}
# | 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... |