#P1407E. Egor in the Republic of Dagestan
Egor in the Republic of Dagestan
No submission language available for this problem.
Description
Egor is a famous Russian singer, rapper, actor and blogger, and finally he decided to give a concert in the sunny Republic of Dagestan.
There are cities in the republic, some of them are connected by directed roads without any additional conditions. In other words, road system of Dagestan represents an arbitrary directed graph. Egor will arrive to the city , travel to the city by roads along some path, give a concert and fly away.
As any famous artist, Egor has lots of haters and too annoying fans, so he can travel only by safe roads. There are two types of the roads in Dagestan, black and white: black roads are safe at night only, and white roads — in the morning. Before the trip Egor's manager's going to make a schedule: for each city he'll specify it's color, black or white, and then if during the trip they visit some city, the only time they can leave it is determined by the city's color: night, if it's black, and morning, if it's white. After creating the schedule Egor chooses an available path from to , and for security reasons it has to be the shortest possible.
Egor's manager likes Dagestan very much and wants to stay here as long as possible, so he asks you to make such schedule that there would be no path from to or the shortest path's length would be greatest possible.
A path is one city or a sequence of roads such that for every road (excluding the first one) the city this road goes from is equal to the city previous road goes into. Egor can move only along paths consisting of safe roads only.
The path length is equal to the number of roads in it. The shortest path in a graph is a path with smallest length.
The first line contains two integers , (, ) — the number of cities and the number of roads.
The -th of next lines contains three integers — , and (, ) — numbers of cities connected by road and its type, respectively ( — night road, — morning road).
In the first line output the length of the desired path (or , if it's possible to choose such schedule that there's no path from to ).
In the second line output the desired schedule — a string of digits, where -th digit is , if the -th city is a night one, and if it's a morning one.
If there are multiple answers, print any.
Input
The first line contains two integers , (, ) — the number of cities and the number of roads.
The -th of next lines contains three integers — , and (, ) — numbers of cities connected by road and its type, respectively ( — night road, — morning road).
Output
In the first line output the length of the desired path (or , if it's possible to choose such schedule that there's no path from to ).
In the second line output the desired schedule — a string of digits, where -th digit is , if the -th city is a night one, and if it's a morning one.
If there are multiple answers, print any.
Samples
Note
For the first sample, if we paint city white, the shortest path is . Otherwise, it's regardless of other cities' colors.
For the second sample, we should paint city black, and there are both black and white roads going from to . Note that there can be a road connecting a city with itself.