# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
39381 | Extazy | Money (IZhO17_money) | C++14 | 3 ms | 18780 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>
#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]!=a[pos]) {
leftmost=min(leftmost,left[a[i+1]]);
rightmost=max(rightmost,right[a[i+1]]);
}
}
if(leftmost<i || rightmost>pos) continue;
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;
}
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... |