304000: CF769B. News About Credit

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

Description

News About Credit

题目描述

Polycarp studies at the university in the group which consists of $ n $ students (including himself). All they are registrated in the social net "TheContacnt!". Not all students are equally sociable. About each student you know the value $ a_{i} $ — the maximum number of messages which the $ i $ -th student is agree to send per day. The student can't send messages to himself. In early morning Polycarp knew important news that the programming credit will be tomorrow. For this reason it is necessary to urgently inform all groupmates about this news using private messages. Your task is to make a plan of using private messages, so that: - the student $ i $ sends no more than $ a_{i} $ messages (for all $ i $ from $ 1 $ to $ n $ ); - all students knew the news about the credit (initially only Polycarp knew it); - the student can inform the other student only if he knows it himself. Let's consider that all students are numerated by distinct numbers from $ 1 $ to $ n $ , and Polycarp always has the number $ 1 $ . In that task you shouldn't minimize the number of messages, the moment of time, when all knew about credit or some other parameters. Find any way how to use private messages which satisfies requirements above.

输入输出格式

输入格式


The first line contains the positive integer $ n $ ( $ 2<=n<=100 $ ) — the number of students. The second line contains the sequence $ a_{1},a_{2},...,a_{n} $ ( $ 0<=a_{i}<=100 $ ), where $ a_{i} $ equals to the maximum number of messages which can the $ i $ -th student agree to send. Consider that Polycarp always has the number $ 1 $ .

输出格式


Print -1 to the first line if it is impossible to inform all students about credit. Otherwise, in the first line print the integer $ k $ — the number of messages which will be sent. In each of the next $ k $ lines print two distinct integers $ f $ and $ t $ , meaning that the student number $ f $ sent the message with news to the student number $ t $ . All messages should be printed in chronological order. It means that the student, who is sending the message, must already know this news. It is assumed that students can receive repeated messages with news of the credit. If there are several answers, it is acceptable to print any of them.

输入输出样例

输入样例 #1

4
1 2 1 0

输出样例 #1

3
1 2
2 4
2 3

输入样例 #2

6
2 0 1 3 2 0

输出样例 #2

6
1 3
3 4
1 2
4 5
5 6
4 6

输入样例 #3

3
0 2 2

输出样例 #3

-1

说明

In the first test Polycarp (the student number $ 1 $ ) can send the message to the student number $ 2 $ , who after that can send the message to students number $ 3 $ and $ 4 $ . Thus, all students knew about the credit.

Input

加入题单

算法标签: