- lower_bound
- 返回值就是返回第一次出现大于等于那个要查找的数的地址
- upper_bound
- 返回值就是返回第一次出现大于那个要查找的数的地址
- 离散化
rep(i,1,n)a[i]=read(),b[i]=a[i];
sort(b+1,b+n+1); cnt=unique(b+1,b+1+n)-b-1;//减去起始地址
rep(i,1,n)a[i]=lower_bound(b+1,b+cnt+1,a[i])-b;//减去起始地址
- 向上取整ceil(),向下取整floor()
- 平衡树
#include<bits/stdc++.h>
#define rep(i,a,b) for(int i=(a);i<=(b);i++)
using namespace std;
vector<int> s;
int op,x,n;
int main()
{
scanf("%d",&n);
while(n--){
scanf("%d%d",&op,&x);
if(op==1)s.insert(upper_bound(s.begin(),s.end(),x),x);
if(op==2)s.erase(lower_bound(s.begin(),s.end(),x));//删除该元素,后面的元素都会向前移一位
if(op==3)cout<<lower_bound(s.begin(),s.end(),x)-s.begin()+1<<"\n";
if(op==4)cout<<s[x-1]<<"\n";
if(op==5)cout<<*--lower_bound(s.begin(),s.end(),x)<<"\n";
if(op==6)cout<<*upper_bound(s.begin(),s.end(),x)<<"\n";
}return 0;
}