CF1579D.Productive Meeting
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
An important meeting is to be held and there are exactly n 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 i -th person is a non-negative integer ai . This means that after exactly ai talks this person leaves the meeting (and does not talk to anyone else anymore). If ai=0 , the i -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 a , 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 t ( 1≤t≤1000 ) — the number of test cases.
The next 2t lines contain descriptions of the test cases.
The first line of each test case description contains an integer n ( 2≤n≤2⋅105 ) —the number of people in the meeting. The second line consists of n space-separated integers a1,a2,…,an ( 0≤ai≤2⋅105 ) — the sociability parameters of all people.
It is guaranteed that the sum of n over all test cases does not exceed 2⋅105 . It is also guaranteed that the sum of all ai (over all test cases and all i ) does not exceed 2⋅105 .
输出格式
Print t answers to all test cases.
On the first line of each answer print the number k — the maximum number of talks possible in a meeting.
On each of the next k lines print two integers i and j ( 1≤i,j≤n and i=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