Even Relation

AtCoder
IDabc126_d
Time2000ms
Memory256MB
Difficulty
We have a tree with $N$ vertices numbered $1$ to $N$. The $i$\-th edge in the tree connects Vertex $u_i$ and Vertex $v_i$, and its length is $w_i$. Your objective is to paint each vertex in the tree white or black (it is fine to paint all vertices the same color) so that the following condition is satisfied: * For any two vertices painted in the same color, the distance between them is an even number. Find a coloring of the vertices that satisfies the condition and print it. It can be proved that at least one such coloring exists under the constraints of this problem. ## Constraints * All values in input are integers. * $1 \leq N \leq 10^5$ * $1 \leq u_i < v_i \leq N$ * $1 \leq w_i \leq 10^9$ ## Input Input is given from Standard Input in the following format: $N$ $u_1$ $v_1$ $w_1$ $u_2$ $v_2$ $w_2$ $.$ $.$ $.$ $u_{N - 1}$ $v_{N - 1}$ $w_{N - 1}$ [samples]
Samples
Input #1
3
1 2 2
2 3 1
Output #1
0
0
1
Input #2
5
2 5 2
2 3 10
1 3 8
3 4 2
Output #2
1
0
1
0
1
API Response (JSON)
{
  "problem": {
    "name": "Even Relation",
    "description": {
      "content": "We have a tree with $N$ vertices numbered $1$ to $N$. The $i$\\-th edge in the tree connects Vertex $u_i$ and Vertex $v_i$, and its length is $w_i$. Your objective is to paint each vertex in the tree w",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "abc126_d"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "We have a tree with $N$ vertices numbered $1$ to $N$. The $i$\\-th edge in the tree connects Vertex $u_i$ and Vertex $v_i$, and its length is $w_i$. Your objective is to paint each vertex in the tree w...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments