# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
365294 | saleh | 수열 (APIO14_sequence) | C++17 | 2069 ms | 9324 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int MAXN = 100 * 1000 + 2, MAXK = 200 + 2;
int n, k, chi, lvl;
int par[MAXK][MAXN];
long long dp[2 + 2][MAXN], ps[MAXN];
void cal(int l = chi, int r = n + 1, int ll = chi, int rr = n) {
int mid = ((l + r) >> 1), md;
long long j;
for (int i = ll; i < mid && i < r; i++) if ((j = dp[1 - lvl][i] + ps[i] * (ps[mid] - ps[i])) > dp[lvl][mid]) {
dp[lvl][mid] = j;
md = i;
}
par[chi][mid] = md;
if (l < mid) cal(l, mid, ll, md);
if (mid + 1 < r) cal(mid + 1, r, md, rr);
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(nullptr), cout.tie(nullptr);
cin >> n >> k;
int a;
for (int i = 0; i < n; i++) {
cin >> a;
ps[i + 1] = ps[i] + a;
}
for (int i = 1; i <= k; i++) {
chi = i;
lvl = i & 1;
for (int j = i; j <= n; j++) dp[lvl][j] = -1;
cal();
}
cout << dp[k & 1][n] << '\n';
while (k > 0) {
cout << par[k][n] << ' ';
n = par[k][n];
k--;
}
return 0;
}
컴파일 시 표준 에러 (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... |