# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1113043 | adaawf | 수열 (APIO14_sequence) | C++17 | 95 ms | 131072 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <assert.h>
using namespace std;
long long int a[100005], c[100005], f[100005][205], g[100005][205];
void trya(int i, int l, int r, int tl, int tr) {
if (tl > tr) return;
long long int mid = (tl + tr) / 2, res = -1, h;
for (int j = l; j <= r; j++) {
if (j > mid) break;
long long int k = (c[mid] - c[j - 1]) * c[j - 1] + f[j - 1][i - 1];
if (res < k) {
res = k;
h = j;
}
}
g[mid][i] = h; f[mid][i] = res;
trya(i, l, h, tl, mid - 1);
trya(i, h, r, mid + 1, tr);
}
int main() {
ios::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
int n, k;
cin >> n >> k;
for (int i = 1; i <= n; i++) {
cin >> a[i];
c[i] = c[i - 1] + a[i];
}
for (int i = 2; i <= k + 1; i++) {
for (int j = 1; j <= n; j++) {
f[j][i] = -1e18;
}
trya(i, 2, n, i, n);
}
cout << f[n][k + 1] << '\n';
int h = n, l = k + 1;
while (l != 1) {
cout << g[h][l] - 1 << " ";
h = g[h][l] - 1;
l--;
}
}
컴파일 시 표준 에러 (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... |