789. 数的范围
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了789. 数的范围相关的知识,希望对你有一定的参考价值。
https://www.acwing.com/problem/content/791/
#include<cstdio>
#include<iostream>
using namespace std;
const int N=1e5+10;
int a[N],n,q;
int main(void)
{
cin>>n>>q;
for(int i=0;i<n;i++) cin>>a[i];
while(q--)
{
int k; cin>>k;
int l=0,r=n-1;
while(l<r)
{
int mid=l+r>>1;
if(a[mid]>=k) r=mid;
else l=mid+1;
}
if(a[l]==k) cout<<l<<" ";
else cout<<"-1 ";
l=0,r=n-1;
while(l<r)
{
int mid=l+r+1>>1;
if(a[mid]<=k) l=mid;
else r=mid-1;
}
if(a[l]==k) cout<<l<<" ";
else cout<<"-1 ";
cout<<endl;
}
return 0;
}
以上是关于789. 数的范围的主要内容,如果未能解决你的问题,请参考以下文章