题库练习 Fighting Tournament
← 上一题 下一题 →

A15323 | Fighting Tournament

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

Burenka is about to watch the most interesting sporting event of the year — a fighting tournament organized by her friend Tonya.

$n$ athletes participate in the tournament, numbered from $1$ to $n$ . Burenka determined the strength of the $i$ -th athlete as an integer $a_i$ , where $1 \leq a_i \leq n$ . All the strength values are different, that is, the array $a$ is a permutation of length $n$ . We know that in a fight, if $a_i > a_j$ , then the $i$ -th participant always wins the $j$ -th.

The tournament goes like this: initially, all $n$ athletes line up in ascending order of their ids, and then there are infinitely many fighting rounds. In each round there is exactly one fight: the first two people in line come out and fight. The winner goes back to the front of the line, and the loser goes to the back.

Burenka decided to ask Tonya $q$ questions. In each question, Burenka asks how many victories the $i$ -th participant gets in the first $k$ rounds of the competition for some given numbers $i$ and $k$ . Tonya is not very good at analytics, so he asks you to help him answer all the questions.

输入格式

The first line contains one integer $t$ ( $1 \leq t \leq 10^4$ ) — the number of test cases. Description of the test cases follows.

The first line of each test case contains two integers $n$ and $q$ ( $2 \leq n \leq 10^5$ , $1 \leq q \leq 10^5$ ) — the number of tournament participants and the number of questions.

The second line of each test case contains $n$ integers $a_1, a_2, \ldots, a_n$ ( $1 \leq a_i \leq n$ ) — the array $a$ , which is a permutation.

The next $q$ lines of a test case contain questions. Each line contains two integers $i$ and $k$ ( $1 \leq i \leq n$ , $1 \leq k \leq 10^9$ ) — the number of the participant and the number of rounds.

It is guaranteed that the sum of $n$ and the sum of $q$ over all test cases do not exceed $10^5$ .

输出格式

For each Burenka's question, print a single line containing one integer — the answer to the question.

输入输出样例

输入 #1
3
3 1
3 1 2
1 2
4 2
1 3 4 2
4 5
3 2
5 2
1 2 3 5 4
5 1000000000
4 6
输出 #1
2
0
1
0
4
C++ 编辑器
输入
输出