- Time limit: 1.00 s
- Memory limit: 512 MB
You are given an array of integers and queries of the form: how many distinct values are there in a range ?
Input
The first input line has two integers and : the array size and number of queries.
The next line has integers : the array values.
Finally, there are lines describing the queries. Each line has two integers and .
Output
For each query, print the number of distinct values in the range.
Constraints
Example
Input:
5 3 3 2 3 1 2 1 3 2 4 1 5
Output:
2 3 3