이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include <fstream>
#define endl '\n'
#define mod 1000007
#define INF 100000000
//#define ll long long
///#define cin fin
///#define cout fout
#define fi first
#define se second
using namespace std;
double const EPS = 1e-14;
///ofstream fout("herding.out");
///ifstream fin("herding.in");
const int Max = 1e6 + 5;
const int M = 1e6;
int seg[4*Max];
void Update(int x, int l, int r, int pos) {
if(l == r) {
seg[x]++;
}
else {
int mid = (l+r)/2;
if(pos <= mid) Update(x*2,l,mid,pos);
else Update(x*2+1,mid+1,r,pos);
seg[x] = seg[x*2]+seg[x*2+1];
}
}
int sol(int x, int l, int r, int L, int R) {
if(l > R || r < L) {
return 0;
}
else if(l >= L && r <= R) {
return seg[x];
}
else {
int mid = (l+r)/2;
return sol(x*2,l,mid,L,R)+sol(x*2+1,mid+1,r,L,R);
}
}
int main()
{
ios_base::sync_with_stdio(0);cout.tie(0);cin.tie(0);
int n; cin >> n; int arr[n], ans = 1; vector<int> v;
for(int i = 0; i < n; i++) cin >> arr[i];
int last = INF;
for(int i = 0; i < n; i++) {
if(last == INF || (v.back() <= arr[i] && sol(1,1,M,last+1,arr[i]-1) == 0)) {
if(last == INF) last = arr[i];
v.push_back(arr[i]);
}
else {
for(int j = v.size()-1; j >= 0; j--) {
// cout << v[j] << 'o' << endl;
Update(1,1,M,v[j]); v.pop_back();
}
last = arr[i]; v.push_back(arr[i]); ans++;
}
// cout << last << ' ' << v.back() << ' ' << arr[i] << 'k' << endl;
// cout << sol(1,1,M,last+1,arr[i]-1) << 'h' << endl;
}
cout << ans;
return 0;
}
/*
7
4 3 1 1 5 1 2*/
# | 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... |