CF1005F.Berland and the Shortest Paths
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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 di is the number of roads needed to travel from the capital to city i , moving only along the n−1 chosen roads, then d1+d2+⋯+dn 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≤n≤2⋅105,n−1≤m≤2⋅105,1≤k≤2⋅105 ), 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⋅k≤106 .
The following m lines describe the roads, one road per line. Each line contains two integers ai , bi ( 1≤ai,bi≤n , ai=bi ) — 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≤t≤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⋅k≤106 , the total length of all the t lines will not exceed 106 .
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