头文件:#include<algorithm>
如果 int a[100];
for(int i=1;i<=n;i++)
scanf("%d",&a[i]);
lower_bound(a+1,a+1+n,x)-x:左端点a[1],右端点a[n]以此二分查找数x,(区间是前闭后开)返回a[i]中第一个大于等于x的下标。
upper_bound(a+1,a+1+n,x)-x:同上,返回a[i]中第一个大于x的下标。
比如 输入n,m,输入n个数a[i],输入m个数b[j],判断b[j]在a[i]中出现的次数
我们只用先对a[i]进行排序,用upper_bound()找到大于b[j]的下标,用lower_bound()找到大于等于b[j]下标,两下标相减,得到的就是b[j]在a[i]中出现的次数。比如1 3 3 4 6 6 查找b[1]为3,upper_bound()找到下标为4(因为我是让i=1开始),lower_bound()找到下标为2,相减为2,即为b[1]在1 3 3 4 6 6出现的次数。
#include<iostream>
#include<algorithm>
#include<cstdio>
#include<cstring>
using namespace std;
typedef long long ll;
int a[100],b[100];
int main()
{
int n,m;
cin>>n>>m;
for(int i=1;i<=n;i++)
cin>>a[i];
sort(a,a+n+1);
for(int i=1;i<=m;i++)
{
cin>>b[i];
int ans=upper_bound(a+1,a+n+1,b[i])-b[i]-(lower_bound(a+1,a+n+1,b[i])-b[i]);
cout<<ans<<endl;
}
return 0;
}