CF1470E Strange Permutation
Description
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.
Input Format
N/A
Output Format
N/A
Explanation/Hint
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.