This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <iostream>
#include <fstream>
#include <vector>
#include <queue>
#include <utility>
#include <algorithm>
#include <cstring>
int x, k;
int arr[100005];
int dp[105][100005];
void divide(int l, int r, int optl, int optr, int idx) {
//std::cerr << " " << l << " " << r << " " << optl << " " << optr << " " << idx << "\n";
if (l>r) {
return;
}
int m = (l+r)>>1;
int max = 0;
int opt = -1;
for (int i = std::min(m, optr+100); i >= std::max(1, optl); i--) {
max = std::max(max, arr[i]);
if (dp[idx][m] > dp[idx-1][i-1]+max) {
dp[idx][m] = dp[idx-1][i-1]+max;
opt = i;
}
}
divide(l,m-1,optl,opt,idx);
divide(m+1,r,opt,optr,idx);
}
int main() {
std::ios_base::sync_with_stdio(false);
std::cin.tie(NULL);
std::cout.tie(NULL);
std::cin >> x >> k;
for (int i = 1; i <= x; i++) {
std::cin >> arr[i];
}
memset(dp,0x3f,sizeof(dp));
dp[1][0] = 0;
for (int i = 1; i <= x; i++) {
dp[1][i] = std::max(dp[1][i-1], arr[i]);
}
dp[1][0] = 0x3f3f3f3f;
for (int i = 2; i <= k; i++) {
divide(1,x,1,x,i);
}
std::cout << dp[k][x] << "\n";
}
# | 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... |