# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
95429 | choikiwon | K blocks (IZhO14_blocks) | C++17 | 9 ms | 1144 KiB |
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<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
const int MN = 100010;
int B[MN];
int N, K;
int A[MN];
ll dp[2][MN];
int main() {
int p = 0;
for(int i = 1; i < MN; i++) {
if(i == (1 << (p + 1))) p++;
B[i] = p;
}
scanf("%d %d", &N, &K);
for(int i = 0; i < N; i++) {
scanf("%d", &A[i]);
}
for(int i = N - 1; i >= 0; i--) {
dp[1][i] = A[i];
dp[1][i] = max(dp[1][i], dp[1][i + 1]);
}
dp[1][N] = 1e18;
for(int i = 2; i <= K; i++) {
int p = (i & 1) ^ 1;
int c = (i & 1);
stack<pair<ll, int> > stk1, stk2;
for(int j = N - 1; j >= 0; j--) {
while(!stk1.empty() && stk1.top().first <= A[j]) {
stk1.pop();
}
int t = stk1.empty()? N : stk1.top().second;
while(!stk2.empty() && stk2.top().second < t) {
stk2.pop();
}
stk1.push({A[j], j});
if(stk2.empty() || stk2.top().first > dp[p][t] + A[j]) {
stk2.push({dp[p][t] + A[j], j});
}
dp[c][j] = stk2.top().first;
}
}
printf("%lld", dp[K & 1][0]);
}
Compilation message (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... |