# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
95436 | choikiwon | K blocks (IZhO14_blocks) | C++17 | 178 ms | 3480 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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], dp[2][MN];
struct Info {
int h, mn, id;
};
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]);
}
for(int i = 2; i <= K; i++) {
int p = (i & 1) ^ 1;
int c = (i & 1);
stack<Info> stk1;
stack<pii> stk2;
for(int j = N - i; j >= 0; j--) {
int mn = dp[p][j + 1];
while(!stk1.empty() && stk1.top().h <= A[j]) {
mn = min(mn, stk1.top().mn);
stk1.pop();
}
int t = stk1.empty()? N - i + 1 : stk1.top().id;
while(!stk2.empty() && stk2.top().second < t) {
stk2.pop();
}
stk1.push({A[j], mn, j});
if(stk2.empty() || stk2.top().first > mn + A[j]) {
stk2.push({mn + A[j], j});
}
dp[c][j] = stk2.top().first;
//cout << i << ' ' << j << ' ' << dp[c][j] << endl;
}
}
printf("%d", dp[K & 1][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... |