# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
488158 | ntabc05101 | 수열 (APIO14_sequence) | C++14 | 81 ms | 131076 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define taskname ""
const long long inf = 1e17;
int main() {
if (fopen(taskname".inp", "r")) {
freopen(taskname".inp", "r", stdin);
freopen(taskname".out", "w", stdout);
}
else {
if (fopen(taskname".in", "r")) {
freopen(taskname".in", "r", stdin);
freopen(taskname".out", "w", stdout);
}
}
cin.tie(0)->sync_with_stdio(0);
int n, K; cin >> n >> K;
long long a[n + 1];
a[0] = 0;
for (int i = 1; i <= n; i++) {
cin >> a[i]; a[i] += a[i - 1];
}
vector<long long> dp[n + 1];
function<bool(int, int, int, int)> chk = [&](int k, int i, int j, int t) {
return (dp[i][k] - a[i] * a[i] - dp[j][k] + a[j] * a[j]) <= a[t] * (a[j] - a[i]);
};
function<bool(int, int, int, int)> chk2 = [&](int k, int i, int j, int t) {
return (dp[i][k] - a[i] * a[i] - dp[j][k] + a[j] * a[j]) * (a[t] - a[j]) >= (dp[j][k] - a[j] * a[j] - dp[t][k] + a[t] * a[t]) * (a[j] - a[i]);
};
//K++;
int prf[n + 1][K + 1];
memset(prf, 0, sizeof(prf));
long long res = 0;
for (int i = 0; i <= n; i++) {
dp[i].assign(K + 1, 0);
}
dp[0][0] = 0;
deque<int> deq;
for (int k = 1; k <= K; k++) {
deq.clear(); deq.push_back(0);
for (int i = 1; i <= n; i++) {
while (deq.size() > 1 && chk(k - 1, deq[0], deq[1], i)) {
deq.pop_front();
}
int j = deq.front();
dp[i][k] = dp[j][k - 1] + (a[i] - a[j]) * a[j];
prf[i][k] = j;
while (deq.size() > 1 && chk2(k - 1, deq[deq.size() - 2], deq.back(), i)) {
deq.pop_back();
}
deq.push_back(i);
}
}
cout << dp[n][K] << "\n";
while (K > 0) {
cout << prf[n][K] << " ";
n = prf[n][K--];
}
cout << "\n";
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... |