# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
39379 | Extazy | Money (IZhO17_money) | C++14 | 0 ms | 18780 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define endl '\n'
#define prev kjlahjkghakj
#define left iljhghakjja
#define right lkhljahjkajhahja
using namespace std;
const int N = 1000007;
int n,a[N];
bool used[N];
int state[N];
int left[N],right[N];
multiset < int >::iterator prev(multiset < int >::iterator it) {
--it;
return it;
}
bool are_consecutive(multiset < int > &s, int v1, int v2) {
if(v1==v2) return true;
return *prev(s.lower_bound(v2))==v1;
}
int recurse(int pos) {
if(pos<1) return 0;
if(used[pos]) return state[pos];
used[pos]=true;
int i,ans=recurse(pos-1)+1;
multiset < int > s;
int leftmost=pos,rightmost=pos;
for(i=1;i<=pos;i++) s.insert(a[i]);
for(i=pos-1;i>=1;i--) {
if(!are_consecutive(s,a[i],a[i+1])) break;
if(a[i]<a[i+1]) {
if(a[i+1]!=pos) {
leftmost=min(leftmost,left[a[i+1]]);
rightmost=max(rightmost,right[a[i+1]]);
}
}
if(leftmost<i || rightmost>pos) break;
ans=min(ans,1+recurse(i-1));
}
return state[pos]=ans;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int i;
scanf("%d", &n);
for(i=1;i<=n;i++) {
scanf("%d", &a[i]);
right[a[i]]=i;
}
for(i=n;i>=1;i--) {
left[a[i]]=i;
}
printf("%d\n", recurse(n));
return 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... |