记录编号 |
449721 |
评测结果 |
AAAAA |
题目名称 |
范围查询 |
最终得分 |
100 |
用户昵称 |
JustWB |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.073 s |
提交时间 |
2017-09-14 20:50:19 |
内存使用 |
38.46 MiB |
显示代码纯文本
#include<cstdio>
#include<iostream>
#include<algorithm>
const int maxn=10000000;
using namespace std;
inline int get();
int n,m;
int N[maxn];
int main()
{
freopen("rangea.in","r",stdin);
freopen("rangea.out","w",stdout);
n=get();m=get();
for(int i=0;i<n;i++)N[i]=get();
sort(N,N+n);
n=unique(N,N+n)-N;
while(m--)
{
register int l=get(),r=get();
printf("%d\n",upper_bound(N,N+n,r)-lower_bound(N,N+n,l));
}
return 0;
}
inline int get()
{
int t=0;char c=getchar(),j=1;
while(!isdigit(c))
if(c=='-')j=-1,c=getchar();
else c=getchar();
while(isdigit(c))
t=(t<<3)+(t<<1)+c-'0',
c=getchar();
return j*t;
}