이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define int long long
const int M = 1e5 + 2;
int a[M], pre[M];
int dp[M][201];
int id[M][201];
const int inf = LLONG_MAX / 2;
int sq(int x) {
return x * x;
}
signed main() {
int n, k;
cin >> n >> k;
for(int i = 1; i <= n; i++) {
cin >> a[i];
pre[i] = pre[i - 1] + a[i];
}
for(int i = 0; i <= k; i++) dp[0][i] = 0;
for(int i = 1; i <= n; i++) {
dp[i][1] = sq(pre[i]);
for(int j = 2; j <= k + 1; j++) {
dp[i][j] = inf;
for(int q = 1; q < i; q++) {
if(dp[i][j] > dp[q][j - 1] + sq(pre[i] - pre[q])) {
dp[i][j] = dp[q][j - 1] + sq(pre[i] - pre[q]);
id[i][j] = q;
}
}
}
}
cout << (sq(pre[n]) - dp[n][k + 1]) / 2 << '\n';
int gay = id[n][k + 1];
k++;
while(k > 1) {
cout << gay << ' ';
k--;
gay = id[gay][k];
}
cout << '\n';
}
# | 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... |