- Time limit: 1.00 s
- Memory limit: 512 MB
Your task is to process $q$ queries of the form: if you arrive and leave the festival at specific times, what is the maximum number of movies you can watch?
Input
The first input line has two integers $n$ and $q$: the number of movies and queries.
After this, there are $n$ lines describing the movies. Each line has two integers $a$ and $b$: the starting and ending time of a movie.
Finally, there are $q$ lines describing the queries. Each line has two integers $a$ and $b$: your arrival and leaving time.
Output
Print the maximum number of movies for each query.
Constraints
- $1 \le n,q \le 2 \cdot 10^5$
- $1 \le a < b \le 10^6$
Input:
4 3
2 5
6 10
4 7
9 10
5 9
2 10
7 10
Output:
0
2
1