308130: CF1470E. Strange Permutation

Memory Limit:256 MB Time Limit:3 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Strange Permutation

题意翻译

给出一个 $1$ 到 $n$ 的排列 $p_{1\dots n}$。你可以选择若干个**互不重叠**的区间,并将它们翻转,称为一组翻转操作。翻转一个区间 $[l,r]$ 的代价是 $r - l$。一组翻转的代价是所选区间的代价之和。你希望花费的代价不超过 $c$。 每组可能的翻转操作,都会得到一个排列。将这些排列按字典序从小到大排序。 你需要回答 $q$ 次询问。每次询问有两个参数 $i,j$,表示问字典序第 $j$ 小的排列里,第 $i$ 个位置上的数是几。如果不存在 $j$ 个排列,则输出 $-1$。 数据范围:$1\leq n\leq 3\times10^4$,$1\leq c\leq 4$,$1\leq q\leq 3\times 10^5$。

题目描述

Alice had a permutation $ p_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] $ (elements from position $ l $ to position $ r $ , inclusive) is equal to $ r - l $ , and the cost of the operation is the sum of costs of reversing individual subranges. Alice had an integer $ c $ in mind, so she only considered operations that cost no more than $ c $ . 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 $ i $ -th number in the $ j $ -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 $ t $ ( $ 1 \leq t \leq 30 $ ) — the number of test cases. The first line of each test case contains three integers $ n $ , $ c $ , $ q $ ( $ 1 \leq n \leq 3 \cdot 10^4 $ , $ 1 \leq c \leq 4 $ , $ 1 \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 $ n $ integers $ p_1, p_2, \dots, p_n $ ( $ 1 \leq p_i \leq n $ , $ p_i \neq p_j $ if $ i \neq j $ ), describing the initial permutation. The following $ q $ lines describe the queries. Each of them contains two integers $ i $ and $ j $ ( $ 1 \leq i \leq n $ , $ 1 \leq j \leq 10^{18} $ ), denoting parameters of this query. It is guaranteed that the sum of values $ n $ over all test cases does not exceed $ 3 \cdot 10^5 $ , and the sum of values $ q $ over all test cases does not exceed $ 3 \cdot 10^5 $ .

输出格式


For each query output the answer for this query, or $ -1 $ if $ j $ -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, 3, 2] $ , $ [2, 1, 3] $ . Note that, for a permutation $ [3, 2, 1] $ Alice would have to reverse the whole array, and it would cost her $ 2 $ , which is greater than the specified value $ c=1 $ . The other two permutations can not be obtained by performing exactly one operation described in the problem statement.

Input

题意翻译

给出一个 $1$ 到 $n$ 的排列 $p_{1\dots n}$。你可以选择若干个**互不重叠**的区间,并将它们翻转,称为一组翻转操作。翻转一个区间 $[l,r]$ 的代价是 $r - l$。一组翻转的代价是所选区间的代价之和。你希望花费的代价不超过 $c$。 每组可能的翻转操作,都会得到一个排列。将这些排列按字典序从小到大排序。 你需要回答 $q$ 次询问。每次询问有两个参数 $i,j$,表示问字典序第 $j$ 小的排列里,第 $i$ 个位置上的数是几。如果不存在 $j$ 个排列,则输出 $-1$。 数据范围:$1\leq n\leq 3\times10^4$,$1\leq c\leq 4$,$1\leq q\leq 3\times 10^5$。

加入题单

算法标签: