Miracle Tree

AtCoder
IDarc117_d
Time2000ms
Memory256MB
Difficulty
We have a tree with $N$ vertices, numbered $1, 2, \dots, N$. The $i$\-th edge $(1 \leq i \leq N-1)$ connects Vertex $A_i$ and Vertex $B_i$. A boy E869120 found this tree and wants to write an integer in each vertex to surprise another boy square1001. For that, the following conditions need to be satisfied, where $E_i$ is the integer written on Vertex $i$. > **Condition 1:** $E_i \geq 1$ $(1 \leq i \leq N)$ holds. > **Condition 2:** $|E_i - E_j| \geq dist(i, j)$ holds for every pair $(i, j)$ $(1 \leq i < j \leq N)$. > **Condition 3:** the value $\max(E_1, E_2, \dots, E_N)$ should be minimized while satisfying Conditions 1 and 2. Here, $dist(i, j)$ is: * the length of the simple path (the path without repetition of the same vertex) from Vertex $i$ to $j$. * In other words, it is the value $L$ where the simple path is $q_0 \to q_1 \to q_2 \to \cdots \to q_L$ ($q_0 = i, q_L = j$). Construct one way to write integers that surprises square1001. ## Constraints * $2 \leq N \leq 200000$ * $1 \leq A_i < B_i \leq N$ * The given graph is a tree. * All values in input are integers. ## Input Input is given from Standard Input in the following format: $N$ $A_1$ $B_1$ $A_2$ $B_2$ $\vdots$ $A_{N-1}$ $B_{N-1}$ [samples]
Samples
Input #1
2
1 2
Output #1
2 1

If we write an integer $2$ on Vertex $1$ and an integer $1$ on Vertex $2$, we have $dist(1, 2) = 1$ and $|E_1 - E_2| = 1$, satisfying Condition 2.
The other conditions are also satisfied, so we can surprise square1001 this way.
$(E_1, E_2) = (1, 2)$ will also be accepted.
Input #2
4
1 2
1 4
2 3
Output #2
3 2 1 4

$(E_1, E_2, E_3, E_4) = (2, 3, 4, 1)$ will also be accepted.
API Response (JSON)
{
  "problem": {
    "name": "Miracle Tree",
    "description": {
      "content": "We have a tree with $N$ vertices, numbered $1, 2, \\dots, N$. The $i$\\-th edge $(1 \\leq i \\leq N-1)$ connects Vertex $A_i$ and Vertex $B_i$. A boy E869120 found this tree and wants to write an integer ",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "arc117_d"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "We have a tree with $N$ vertices, numbered $1, 2, \\dots, N$. The $i$\\-th edge $(1 \\leq i \\leq N-1)$ connects Vertex $A_i$ and Vertex $B_i$.\nA boy E869120 found this tree and wants to write an integer ...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments