A10821 | News About Credit
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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$ .
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.
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.
输出格式
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.
输入输出样例
输入 #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.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted