# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
209975 | my99n | 수열 (APIO14_sequence) | C++14 | 43 ms | 14348 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
long long a[100100], s[100100], dp[2][100100];
vector<int> mxk[2][100100];
void solve (int i, int n) {
int k = 1, j = 1;
while (j <= n) {
long long nw = dp[i^1][k] + (s[j]-s[k])*(s[k]-s[0]);
long long nx = dp[i^1][k+1] + (s[j]-s[k+1])*(s[k+1]-s[0]);
if (k == j-1) nx = 0;
if (nx > nw) {
k++; continue;
}
dp[i][j] = nw;
mxk[i][j].clear();
mxk[i][j].push_back(k);
for (auto x : mxk[i^1][k]) mxk[i][j].push_back(x);
j++;
}
}
int main(){
int n, k; scanf("%d %d", &n, &k);
for (int i = 1; i <= n; i++) scanf("%lld", &a[i]), s[i] = s[i-1]+a[i];
for (int i = 1; i <= k; i++) solve(i%2, n);
printf("%lld\n", dp[k%2][n]);
for (auto x : mxk[k%2][n]) printf("%d ", x);
return 0;
}
// 7 3 4 1 3 4 0 2 3
컴파일 시 표준 에러 (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... |