# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
37531 | Just_Solve_The_Problem | 수열 (APIO14_sequence) | C++11 | 1179 ms | 82880 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define pb push_back
#define ll long long
const int N = (int)1e5 + 7;
const ll inf = (ll)1e18 + 7;
ll dp[2][N];
ll pref[N];
int backtrack[201][N];
int n;
ll calc (int l, int r) {
return pref[l] * (pref[r] - pref[l]);
}
void div (int k, int l, int r, int optl, int optr) {
if (l > r) return;
int mid = (l + r) >> 1;
dp[k & 1][mid] = 0;
int opt = optl;
for (int i = optl; i <= min(mid - 1, optr); i++) {
ll cur = dp[k & 1 ^ 1][i] + calc(i, mid);
if (cur >= dp[k & 1][mid]) {
dp[k & 1][mid] = cur;
opt = i;
}
}
backtrack[k][mid] = opt;
div(k, l, mid - 1, optl, opt);
div(k, mid + 1, r, opt, optr);
}
main () {
int k; scanf ("%d %d", &n, &k);
for (int i = 1; i <= n; i++) {
scanf ("%lld", pref + i);
pref[i] += pref[i - 1];
}
for (int i = 1; i <= k; i++) {
div(i, 1, n, 1, n - 1);
}
printf ("%lld\n", dp[k & 1][n]);
while (k > 0 && n > 0) {
printf ("%d ", backtrack[k][n]);
n = backtrack[k][n];
k--;
}
}
/*
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... |