ZZULIOJ 2856: 小A的游戏制作系列一(lower_bound)

2856: 小A的游戏制作系列一

二分查找lower_bound的使用

#include
#include
using namespace std;
const int N = 1000010;
int n,m,a[N];
signed main()
{
    scanf("%d%d",&n,&m);
    for(int i=0;i<n;i++) scanf("%d",&a[i]);
    sort(a,a+n,greater<int>());
    while(m--)
    {
        int x;scanf("%d",&x); 
        int pos=lower_bound(a,a+n,x,greater<int>())-a;//在数据库里小于等于x的最大ID
        if(pos==n) printf("%d\n",a[0]);//返回最右边的数字,意味着找不到比他更小的,则输出最大值 
        else printf("%d\n",a[pos]);
    }
    return 0;
}

不懂lower_bound的可以看一下这个

lower_bound函数和upper_bound函数

你可能感兴趣的:(#,基础算法,算法)