#P1005F. Berland and the Shortest Paths
Berland and the Shortest Paths
Description
There are 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 to .
It is known that, from the capital (the city with the number ), 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 roads. The President plans to choose a set of roads such that:
- it is possible to travel from the capital to any other city along the chosen roads,
- if is the number of roads needed to travel from the capital to city , moving only along the chosen roads, then is minimized (i.e. as minimal as possible).
In other words, the set of roads should preserve the connectivity of the country, and the sum of distances from city to all cities should be minimized (where you can only use the chosen roads).
The president instructed the ministry to prepare possible options to choose roads so that both conditions above are met.
Write a program that will find possible ways to choose roads for repair. If there are fewer than ways, then the program should output all possible valid ways to choose roads.
The first line of the input contains integers , and (), where is the number of cities in the country, is the number of roads and is the number of options to choose a set of roads for repair. It is guaranteed that .
The following lines describe the roads, one road per line. Each line contains two integers , (, ) — the numbers of the cities that the -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 () — the number of ways to choose a set of roads for repair. Recall that you need to find different options; if there are fewer than of them, then you need to find all possible different valid options.
In the following lines, print the options, one per line. Print an option as a string of characters where the -th character is equal to '1' if the -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 lines should be different.
Since it is guaranteed that , the total length of all the lines will not exceed .
If there are several answers, output any of them.
Input
The first line of the input contains integers , and (), where is the number of cities in the country, is the number of roads and is the number of options to choose a set of roads for repair. It is guaranteed that .
The following lines describe the roads, one road per line. Each line contains two integers , (, ) — the numbers of the cities that the -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.
Output
Print () — the number of ways to choose a set of roads for repair. Recall that you need to find different options; if there are fewer than of them, then you need to find all possible different valid options.
In the following lines, print the options, one per line. Print an option as a string of characters where the -th character is equal to '1' if the -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 lines should be different.
Since it is guaranteed that , the total length of all the lines will not exceed .
If there are several answers, output any of them.