CF1470E.Strange Permutation

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Alice had a permutation p1,p2,,pnp_1, p_2, \ldots, p_n . Unfortunately, the permutation looked very boring, so she decided to change it and choose some non-overlapping subranges of this permutation and reverse them. The cost of reversing a single subrange [l,r][l, r] (elements from position ll to position rr , inclusive) is equal to rlr - l , and the cost of the operation is the sum of costs of reversing individual subranges. Alice had an integer cc in mind, so she only considered operations that cost no more than cc .

Then she got really bored, and decided to write down all the permutations that she could possibly obtain by performing exactly one operation on the initial permutation. Of course, Alice is very smart, so she wrote down each obtainable permutation exactly once (no matter in how many ways it can be obtained), and of course the list was sorted lexicographically.

Now Bob would like to ask Alice some questions about her list. Each question is in the following form: what is the ii -th number in the jj -th permutation that Alice wrote down? Since Alice is too bored to answer these questions, she asked you to help her out.

输入格式

The first line contains a single integer tt ( 1t301 \leq t \leq 30 ) — the number of test cases.

The first line of each test case contains three integers nn , cc , qq ( 1n31041 \leq n \leq 3 \cdot 10^4 , 1c41 \leq c \leq 4 , 1q31051 \leq q \leq 3 \cdot 10^5 ) — the length of the permutation, the maximum cost of the operation, and the number of queries.

The next line of each test case contains nn integers p1,p2,,pnp_1, p_2, \dots, p_n ( 1pin1 \leq p_i \leq n , pipjp_i \neq p_j if iji \neq j ), describing the initial permutation.

The following qq lines describe the queries. Each of them contains two integers ii and jj ( 1in1 \leq i \leq n , 1j10181 \leq j \leq 10^{18} ), denoting parameters of this query.

It is guaranteed that the sum of values nn over all test cases does not exceed 31053 \cdot 10^5 , and the sum of values qq over all test cases does not exceed 31053 \cdot 10^5 .

输出格式

For each query output the answer for this query, or 1-1 if jj -th permutation does not exist in her list.

输入输出样例

  • 输入#1

    2
    3 1 9
    1 2 3
    1 1
    2 1
    3 1
    1 2
    2 2
    3 2
    1 3
    2 3
    3 3
    6 4 4
    6 5 4 3 1 2
    1 1
    3 14
    1 59
    2 6

    输出#1

    1
    2
    3
    1
    3
    2
    2
    1
    3
    1
    4
    -1
    5
  • 输入#2

    1
    12 4 2
    1 2 3 4 5 6 7 8 9 10 11 12
    2 20
    2 21

    输出#2

    2
    2

说明/提示

In the first test case, Alice wrote down the following permutations: [1,2,3][1, 2, 3] , [1,3,2][1, 3, 2] , [2,1,3][2, 1, 3] .

Note that, for a permutation [3,2,1][3, 2, 1] Alice would have to reverse the whole array, and it would cost her 22 , which is greater than the specified value c=1c=1 . The other two permutations can not be obtained by performing exactly one operation described in the problem statement.

首页