CF1579D.Productive Meeting

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

An important meeting is to be held and there are exactly nn people invited. At any moment, any two people can step back and talk in private. The same two people can talk several (as many as they want) times per meeting.

Each person has limited sociability. The sociability of the ii -th person is a non-negative integer aia_i . This means that after exactly aia_i talks this person leaves the meeting (and does not talk to anyone else anymore). If ai=0a_i = 0 , the ii -th person leaves the meeting immediately after it starts.

A meeting is considered most productive if the maximum possible number of talks took place during it.

You are given an array of sociability aa , determine which people should talk to each other so that the total number of talks is as large as possible.

输入格式

The first line contains an integer tt ( 1t10001 \le t \le 1000 ) — the number of test cases.

The next 2t2t lines contain descriptions of the test cases.

The first line of each test case description contains an integer nn ( 2n21052 \le n \le 2 \cdot 10^5 ) —the number of people in the meeting. The second line consists of nn space-separated integers a1,a2,,ana_1, a_2, \dots, a_n ( 0ai21050 \le a_i \le 2 \cdot 10^5 ) — the sociability parameters of all people.

It is guaranteed that the sum of nn over all test cases does not exceed 21052 \cdot 10^5 . It is also guaranteed that the sum of all aia_i (over all test cases and all ii ) does not exceed 21052 \cdot 10^5 .

输出格式

Print tt answers to all test cases.

On the first line of each answer print the number kk — the maximum number of talks possible in a meeting.

On each of the next kk lines print two integers ii and jj ( 1i,jn1 \le i, j \le n and iji \neq j ) — the numbers of people who will have another talk.

If there are several possible answers, you may print any of them.

输入输出样例

  • 输入#1

    8
    2
    2 3
    3
    1 2 3
    4
    1 2 3 4
    3
    0 0 2
    2
    6 2
    3
    0 0 2
    5
    8 2 0 1 1
    5
    0 1 0 0 6

    输出#1

    2
    1 2
    1 2
    3
    1 3
    2 3
    2 3
    5
    1 3
    2 4
    2 4
    3 4
    3 4
    0
    2
    1 2
    1 2
    0
    4
    1 2
    1 5
    1 4
    1 2
    1
    5 2
首页