查询范围(Range)
描述
数轴上有n个点,对于任一闭区间 [a, b],试计算落在其内的点数。
输入
第一行包括两个整数:点的总数n,查询的次数m。
第二行包含n个数,为各个点的坐标。
以下m行,各包含两个整数:查询区间的左、右边界a和b。
输出
对每次查询,输出落在闭区间[a, b]内点的个数。
样例
Input
5 2
1 3 7 9 11
4 6
7 12
Output
0
3
限制
0 ≤ n, m ≤ 5×10^5
对于次查询的区间[a, b],都有a ≤ b
各点的坐标互异
各点的坐标、查询区间的边界a、b,均为不超过10^7的非负整数
时间:2 sec
内存:256 MB
先上完整程序:
#include<iostream>
#include<cstdio>
using namespace std;
const int SZ = 1<<20;
struct fastio{ //fast io
char inbuf[SZ];
char outbuf[SZ];
fastio(){
setvbuf(stdin,inbuf,_IOFBF,SZ);
setvbuf(stdout,outbuf,_IOFBF,SZ);
}
}io;
int binary_search(int *a, int Length, int goal, int &border);
void QuickSort(int *a, int lo, int hi);
int main(){
#ifndef _OJ_
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#endif
int IntervalSize(0), QueryTimes(0); // interval size and query times
int *points; //store interval points
scanf("%d %d", &IntervalSize, &QueryTimes);
points = new int[IntervalSize + 2](); //new memory for interval points
for(int i = 1; i < IntervalSize + 1; ++i)
scanf("%d", &points[i]);
points[0] = -1; //set a sentry
points[IntervalSize + 1] =