A10728 | New Roads
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
There are $n$ cities in Berland, each of them has a unique id — an integer from $1$ to $n$ , the capital is the one with id $1$ . Now there is a serious problem in Berland with roads — there are no roads.
That is why there was a decision to build $n-1$ roads so that there will be exactly one simple path between each pair of cities.
In the construction plan $t$ integers $a_{1},a_{2},...,a_{t}$ were stated, where $t$ equals to the distance from the capital to the most distant city, concerning new roads. $a_{i}$ equals the number of cities which should be at the distance $i$ from the capital. The distance between two cities is the number of roads one has to pass on the way from one city to another.
Also, it was decided that among all the cities except the capital there should be exactly $k$ cities with exactly one road going from each of them. Such cities are dead-ends and can't be economically attractive. In calculation of these cities the capital is not taken into consideration regardless of the number of roads from it.
Your task is to offer a plan of road's construction which satisfies all the described conditions or to inform that it is impossible.
That is why there was a decision to build $n-1$ roads so that there will be exactly one simple path between each pair of cities.
In the construction plan $t$ integers $a_{1},a_{2},...,a_{t}$ were stated, where $t$ equals to the distance from the capital to the most distant city, concerning new roads. $a_{i}$ equals the number of cities which should be at the distance $i$ from the capital. The distance between two cities is the number of roads one has to pass on the way from one city to another.
Also, it was decided that among all the cities except the capital there should be exactly $k$ cities with exactly one road going from each of them. Such cities are dead-ends and can't be economically attractive. In calculation of these cities the capital is not taken into consideration regardless of the number of roads from it.
Your task is to offer a plan of road's construction which satisfies all the described conditions or to inform that it is impossible.
输入格式
The first line contains three positive numbers $n$ , $t$ and $k$ ( $2<=n<=2·10^{5}$ , $1<=t,k<n$ ) — the distance to the most distant city from the capital and the number of cities which should be dead-ends (the capital in this number is not taken into consideration).
The second line contains a sequence of $t$ integers $a_{1},a_{2},...,a_{t}$ ( $1<=a_{i}<n$ ), the $i$ -th number is the number of cities which should be at the distance $i$ from the capital. It is guaranteed that the sum of all the values $a_{i}$ equals $n-1$ .
The second line contains a sequence of $t$ integers $a_{1},a_{2},...,a_{t}$ ( $1<=a_{i}<n$ ), the $i$ -th number is the number of cities which should be at the distance $i$ from the capital. It is guaranteed that the sum of all the values $a_{i}$ equals $n-1$ .
输出格式
If it is impossible to built roads which satisfy all conditions, print -1.
Otherwise, in the first line print one integer $n$ — the number of cities in Berland. In the each of the next $n-1$ line print two integers — the ids of cities that are connected by a road. Each road should be printed exactly once. You can print the roads and the cities connected by a road in any order.
If there are multiple answers, print any of them. Remember that the capital has id $1$ .
Otherwise, in the first line print one integer $n$ — the number of cities in Berland. In the each of the next $n-1$ line print two integers — the ids of cities that are connected by a road. Each road should be printed exactly once. You can print the roads and the cities connected by a road in any order.
If there are multiple answers, print any of them. Remember that the capital has id $1$ .
输入输出样例
输入 #1
7 3 3 2 3 1
输出 #1
7 1 3 2 1 2 6 2 4 7 4 3 5
输入 #2
14 5 6 4 4 2 2 1
输出 #2
14 3 1 1 4 11 6 1 2 10 13 6 10 10 12 14 12 8 4 5 1 3 7 2 6 5 9
输入 #3
3 1 1 2
输出 #3
-1
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted