Hide

Problem E
Molekule

Scientists in a chemical lab in Croatia have been studying the chemical bonds between different molecules. They have a special interest in a group of molecules of the chemical compound nitro hydrogen laminate. The compound consists of $N$ molecules bound together by $N - 1$ covalent bonds and all the molecules are directly or indirectly tied together with bonds in a single structure.

The scientists want to modify the compound in a way that all the covalent bonds are transformed into directed covalent bonds. Because of the instability of the newly created compound, each molecule will have a large number of impulses coming out of it and travelling to other molecules using the directed bonds. An impulse can travel using the directed covalent bond only in the direction of the bond itself.

\includegraphics[width=.7\textwidth ]{picture.pdf}
Figure 1: Sample output

The instability of the compound is defined as the largest possible number of bonds a single impulse can use to travel. The scientists want to direct the compound’s covalent bonds in a way that the newly created compound is as stable as possible. In other words, their goal is to create a compound with the minimal longest path an impulse can take during its travel.

Help the scientists determine the direction of each covalent bond in the compound.

Input

The first line of input contains the integer $N$ ($2 \leq N \leq 100\, 000$). Each of the $N - 1$ lines contains the integers $a_ i$ and $b_ i$ ($1 \leq a_ i, b_ i \leq N$) that denote that molecules $a_ i$ and $b_ i$ are connected with a covalent bond.

Output

Output $N - 1$ lines, where each line must contain 1 if the covalent bond is going to be directed from $a_ i$ to $b_ i$, otherwise it contains 0. If there are multiple possible solutions, output any.

Sample Input 1 Sample Output 1
3
1 2
2 3
0
1
Sample Input 2 Sample Output 2
4
2 1
1 3
4 1
1
0
1

Please log in to submit a solution to this problem

Log in