A11940 | Berland and the Shortest Paths
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
There are $n$ cities in Berland. Some pairs of cities are connected by roads. All roads are bidirectional. Each road connects two different cities. There is at most one road between a pair of cities. The cities are numbered from $1$ to $n$ .
It is known that, from the capital (the city with the number $1$ ), you can reach any other city by moving along the roads.
The President of Berland plans to improve the country's road network. The budget is enough to repair exactly $n-1$ roads. The President plans to choose a set of $n-1$ roads such that:
- it is possible to travel from the capital to any other city along the $n-1$ chosen roads,
- if $d_i$ is the number of roads needed to travel from the capital to city $i$ , moving only along the $n-1$ chosen roads, then $d_1 + d_2 + \dots + d_n$ is minimized (i.e. as minimal as possible).
In other words, the set of $n-1$ roads should preserve the connectivity of the country, and the sum of distances from city $1$ to all cities should be minimized (where you can only use the $n-1$ chosen roads).
The president instructed the ministry to prepare $k$ possible options to choose $n-1$ roads so that both conditions above are met.
Write a program that will find $k$ possible ways to choose roads for repair. If there are fewer than $k$ ways, then the program should output all possible valid ways to choose roads.
It is known that, from the capital (the city with the number $1$ ), you can reach any other city by moving along the roads.
The President of Berland plans to improve the country's road network. The budget is enough to repair exactly $n-1$ roads. The President plans to choose a set of $n-1$ roads such that:
- it is possible to travel from the capital to any other city along the $n-1$ chosen roads,
- if $d_i$ is the number of roads needed to travel from the capital to city $i$ , moving only along the $n-1$ chosen roads, then $d_1 + d_2 + \dots + d_n$ is minimized (i.e. as minimal as possible).
In other words, the set of $n-1$ roads should preserve the connectivity of the country, and the sum of distances from city $1$ to all cities should be minimized (where you can only use the $n-1$ chosen roads).
The president instructed the ministry to prepare $k$ possible options to choose $n-1$ roads so that both conditions above are met.
Write a program that will find $k$ possible ways to choose roads for repair. If there are fewer than $k$ ways, then the program should output all possible valid ways to choose roads.
输入格式
The first line of the input contains integers $n$ , $m$ and $k$ ( $2 \le n \le 2\cdot10^5, n-1 \le m \le 2\cdot10^5, 1 \le k \le 2\cdot10^5$ ), where $n$ is the number of cities in the country, $m$ is the number of roads and $k$ is the number of options to choose a set of roads for repair. It is guaranteed that $m \cdot k \le 10^6$ .
The following $m$ lines describe the roads, one road per line. Each line contains two integers $a_i$ , $b_i$ ( $1 \le a_i, b_i \le n$ , $a_i \ne b_i$ ) — the numbers of the cities that the $i$ -th road connects. There is at most one road between a pair of cities. The given set of roads is such that you can reach any city from the capital.
The following $m$ lines describe the roads, one road per line. Each line contains two integers $a_i$ , $b_i$ ( $1 \le a_i, b_i \le n$ , $a_i \ne b_i$ ) — the numbers of the cities that the $i$ -th road connects. There is at most one road between a pair of cities. The given set of roads is such that you can reach any city from the capital.
输出格式
Print $t$ ( $1 \le t \le k$ ) — the number of ways to choose a set of roads for repair. Recall that you need to find $k$ different options; if there are fewer than $k$ of them, then you need to find all possible different valid options.
In the following $t$ lines, print the options, one per line. Print an option as a string of $m$ characters where the $j$ -th character is equal to '1' if the $j$ -th road is included in the option, and is equal to '0' if the road is not included. The roads should be numbered according to their order in the input. The options can be printed in any order. All the $t$ lines should be different.
Since it is guaranteed that $m \cdot k \le 10^6$ , the total length of all the $t$ lines will not exceed $10^6$ .
If there are several answers, output any of them.
In the following $t$ lines, print the options, one per line. Print an option as a string of $m$ characters where the $j$ -th character is equal to '1' if the $j$ -th road is included in the option, and is equal to '0' if the road is not included. The roads should be numbered according to their order in the input. The options can be printed in any order. All the $t$ lines should be different.
Since it is guaranteed that $m \cdot k \le 10^6$ , the total length of all the $t$ lines will not exceed $10^6$ .
If there are several answers, output any of them.
输入输出样例
输入 #1
4 4 3 1 2 2 3 1 4 4 3
输出 #1
2 1110 1011
输入 #2
4 6 3 1 2 2 3 1 4 4 3 2 4 1 3
输出 #2
1 101001
输入 #3
5 6 2 1 2 1 3 2 4 2 5 3 4 3 5
输出 #3
2 111100 110110
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted