#P1610F. Mashtali: a Space Oddysey

    ID: 6189 Type: RemoteJudge 1000ms 256MiB Tried: 0 Accepted: 0 Difficulty: (None) Uploaded By: Tags>constructive algorithmsdfs and similargraphs*3000

Mashtali: a Space Oddysey

No submission language available for this problem.

Description

Lee was planning to get closer to Mashtali's heart to proceed with his evil plan(which we're not aware of, yet), so he decided to beautify Mashtali's graph. But he made several rules for himself. And also he was too busy with his plans that he didn't have time for such minor tasks, so he asked you for help.

Mashtali's graph is an undirected weighted graph with nn vertices and mm edges with weights equal to either 11 or 22. Lee wants to direct the edges of Mashtali's graph so that it will be as beautiful as possible.

Lee thinks that the beauty of a directed weighted graph is equal to the number of its Oddysey vertices. A vertex vv is an Oddysey vertex if d+(v)d(v)=1|d^+(v) - d^-(v)| = 1, where d+(v)d^+(v) is the sum of weights of the outgoing from vv edges, and d(v)d^-(v) is the sum of the weights of the incoming to vv edges.

Find the largest possible beauty of a graph that Lee can achieve by directing the edges of Mashtali's graph. In addition, find any way to achieve it.

Note that you have to orient each edge.

The first line contains two integers nn and mm (1n105;  1m105)(1 \le n \le 10^5;\; 1 \le m \le 10^5) — the numbers of vertices and edges in the graph.

The ii-th line of the following mm lines contains three integers uiu_i, viv_i and wiw_i (1ui,vin;  uivi;  wi{1,2})( 1 \le u_i , v_i \le n;\; u_i \neq v_i;\; \bf{w_i \in \{1, 2\}} ) — the endpoints of the ii-th edge and its weight.

Note that the graph doesn't have to be connected, and it might contain multiple edges.

In the first line print a single integer — the maximum beauty of the graph Lee can achieve.

In the second line print a string of length mm consisting of 11s and 22s — directions of the edges.

If you decide to direct the ii-th edge from vertex uiu_i to vertex viv_i, ii-th character of the string should be 11. Otherwise, it should be 22.

Input

The first line contains two integers nn and mm (1n105;  1m105)(1 \le n \le 10^5;\; 1 \le m \le 10^5) — the numbers of vertices and edges in the graph.

The ii-th line of the following mm lines contains three integers uiu_i, viv_i and wiw_i (1ui,vin;  uivi;  wi{1,2})( 1 \le u_i , v_i \le n;\; u_i \neq v_i;\; \bf{w_i \in \{1, 2\}} ) — the endpoints of the ii-th edge and its weight.

Note that the graph doesn't have to be connected, and it might contain multiple edges.

Output

In the first line print a single integer — the maximum beauty of the graph Lee can achieve.

In the second line print a string of length mm consisting of 11s and 22s — directions of the edges.

If you decide to direct the ii-th edge from vertex uiu_i to vertex viv_i, ii-th character of the string should be 11. Otherwise, it should be 22.

Samples

Sample Input 1

6 7
1 2 1
1 3 2
2 3 2
1 4 1
4 5 1
2 5 2
2 6 2

Sample Output 1

2
1212212

Sample Input 2

6 7
1 2 2
1 3 2
2 3 2
1 4 2
4 5 2
2 5 2
2 6 2

Sample Output 2

0
1212212

Sample Input 3

6 7
1 2 1
1 3 1
2 3 1
1 4 1
4 5 1
2 5 1
2 6 1

Sample Output 3

2
1212212

Note

Explanation for the first sample:

vertices 22 and 55 are Oddyseys.

Explanation for the third sample:

vertices 11 and 66 are Oddyseys.