Little Mirko is a very simple man. Mirko's friend Darko has given him an array of natural integers and asked him queries about the array that Mirko must answer. Each query consists of two integers, the positions of the left and right end of an interval in the array. The answer to the query is the number of different values that appear exactly twice in the given interval.
Input Specification
The first line of input contains the integers and .
The second line of input contains natural integers less than , the elements of the array.
Each of the following lines contains two integers, and , from the task.
Output Specification
The output must consist of lines, each line containing the answer to a query, respectively.
Scoring
In test cases worth points in total, the numbers and will not be larger than .
Sample Input 1
5 1
1 2 1 1 1
1 3
Sample Output 1
1
Explanation for Sample Output 1
In the interval from the first to the third element, there is only one number (number ) that appears exactly twice.
Sample Input 2
5 2
1 1 1 1 1
2 4
2 3
Sample Output 2
0
1
Sample Input 3
5 2
1 1 2 2 3
1 1
1 5
Sample Output 3
0
2
Comments