CF1342F.Make It Ascending

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You are given an array aa consisting of nn elements. You may apply several operations (possibly zero) to it.

During each operation, you choose two indices ii and jj ( 1i,jn1 \le i, j \le n ; iji \ne j ), increase aja_j by aia_i , and remove the ii -th element from the array (so the indices of all elements to the right to it decrease by 11 , and nn also decreases by 11 ).

Your goal is to make the array aa strictly ascending. That is, the condition a1<a2<<ana_1 < a_2 < \dots < a_n should hold (where nn is the resulting size of the array).

Calculate the minimum number of actions required to make the array strictly ascending.

输入格式

The first line contains one integer TT ( 1T100001 \le T \le 10000 ) — the number of test cases.

Each test case consists of two lines. The first line contains one integer nn ( 1n151 \le n \le 15 ) — the number of elements in the initial array aa .

The second line contains nn integers a1a_1 , a2a_2 , ..., ana_n ( 1ai1061 \le a_i \le 10^6 ).

It is guaranteed that:

  • the number of test cases having n5n \ge 5 is not greater than 50005000 ;
  • the number of test cases having n8n \ge 8 is not greater than 500500 ;
  • the number of test cases having n10n \ge 10 is not greater than 100100 ;
  • the number of test cases having n11n \ge 11 is not greater than 5050 ;
  • the number of test cases having n12n \ge 12 is not greater than 2525 ;
  • the number of test cases having n13n \ge 13 is not greater than 1010 ;
  • the number of test cases having n14n \ge 14 is not greater than 33 ;
  • the number of test cases having n15n \ge 15 is not greater than 11 .

输出格式

For each test case, print the answer as follows:

In the first line, print kk — the minimum number of operations you have to perform. Then print kk lines, each containing two indices ii and jj for the corresponding operation. Note that the numeration of elements in the array changes after removing elements from it. If there are multiple optimal sequences of operations, print any one of them.

输入输出样例

  • 输入#1

    4
    8
    2 1 3 5 1 2 4 5
    15
    16384 8192 4096 2048 1024 512 256 128 64 32 16 8 4 2 1
    2
    3 3
    14
    1 2 3 4 5 6 7 8 9 10 11 12 13 14

    输出#1

    3
    6 8
    1 6
    4 1
    7
    1 15
    1 13
    1 11
    1 9
    1 7
    1 5
    1 3
    1
    2 1
    0

说明/提示

In the first test case, the sequence of operations changes aa as follows:

[2,1,3,5,1,2,4,5][2,1,3,5,1,4,7][1,3,5,1,6,7][2,3,5,6,7][2, 1, 3, 5, 1, 2, 4, 5] \rightarrow [2, 1, 3, 5, 1, 4, 7] \rightarrow [1, 3, 5, 1, 6, 7] \rightarrow [2, 3, 5, 6, 7] .

首页