PivotOJ

Index

시간 제한: 2500ms메모리 제한: 512MB출처: COCI 2020-2021BOJ 21225

문제

The h-index is an author-level metric that measures both the productivity and citation impact of the publications of a scientist or scholar. It is defined as the maximum value of h such that the given author has published h papers that have each been cited at least h times.

Our Mirko is nearing retirement. In his life he had published n papers and now q times he asks himself the following: “I wonder, what would be my h-index had I only published papers li through ri?”

Help him calculate the answers.

입력

The first line contains integers n and q (1 ≤ n, q ≤ 200 000), the number of papers and the number of questions.

The second line contains n integers pi (1 ≤ pi ≤ 200 000), where pi is the number of citations of the i-th paper.

The following q lines each contain two integers li and ri (1 ≤ li ≤ ri ≤ n), the endpoints from the i-th question.

출력

Output q lines. In the i-th line output the answer to the i-th question.

예제

예제 1

입력
7 6
3 2 3 1 1 4 7
3 4
1 7
1 6
4 5
1 2
5 7
출력
1
3
3
1
2
2
코드를 제출하려면 로그인하세요.