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;
}