当前位置: 代码迷 >> 综合 >> ZZULIOJ 2856: 小A的游戏制作系列一(lower_bound)
  详细解决方案

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

热度:72   发布时间:2023-11-25 07:49:03.0

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

二分查找lower_bound的使用

#include<cstdio>
#include<algorithm>
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的最大IDif(pos==n) printf("%d\n",a[0]);//返回最右边的数字,意味着找不到比他更小的,则输出最大值 else printf("%d\n",a[pos]);}return 0;
}

不懂lower_bound的可以看一下这个

lower_bound函数和upper_bound函数

  相关解决方案