

Time Limit: 2 sec / Memory Limit: 256 MiB
配点 : 点
問題文
頂点の木があり、頂点には と番号が振られています。 () 番目の辺は頂点 と頂点 を結んでいます。
高橋君は木の 個の頂点に整数を書き込みました。具体的には、各 について、頂点 に整数 を書き込みました。その後、高橋君は居眠りを始めました。
木を見つけた青木君は、残りのすべての頂点に整数を書き込み、高橋君を驚かせようとしています。高橋君を驚かせるためには、木が次の条件を満たさなければなりません。
- 条件: 辺で直接結ばれた つの頂点に書かれている整数の差がちょうど である。
残りのすべての頂点に書き込む整数を工夫することで、木が条件を満たすようにできるか判定してください。もし可能な場合は、どのように整数を書き込めばよいかを具体的にひとつ求めて下さい。
制約
- ()
- () (21:18, 制約の誤記を修正)
- ()
- 与えられるグラフは木になることが保証される
- はすべて相異なる
入力
入力は以下の形式で標準入力から与えられる。
出力
残りのすべての頂点に書き込む整数を工夫することで木が条件を満たすようにできるならば Yes
を、できないならば No
を出力せよ。
条件を満たせる場合、追加で 行出力せよ。このうちの () 行目には、頂点 に書かれる整数を出力せよ。条件を満たすような整数の書き込み方が複数ある場合、そのうちいずれかひとつを出力すればよい。
入力例 1Copy
5 1 2 3 1 4 3 3 5 2 2 6 5 7
出力例 1Copy
Yes 5 6 6 5 7
はじめ、木は以下の図のような状態である。頂点のそばに書かれた数が頂点番号を、頂点の中に書かれた青い数が元から書き込まれていた整数を表す。

青木君はたとえば次のように残りの頂点に整数を書き込むことで木が条件を満たすようにできる。これは出力例 に対応している。

木が条件を満たしていれば、これとは異なった出力でも AC となることに注意せよ。たとえば、入力例 に対しては
Yes 7 6 8 7 7
という出力でも正答となる。
入力例 2Copy
5 1 2 3 1 4 3 3 5 3 2 6 4 3 5 7
出力例 2Copy
No
入力例 3Copy
4 1 2 2 3 3 4 1 1 0
出力例 3Copy
Yes 0 -1 -2 -3
新たに書き込む整数は負になったり を超えたりしても構わない。
Score : points
Problem Statement
We have a tree with vertices. The vertices are numbered . The -th () edge connects the two vertices and .
Takahashi wrote integers into of the vertices. Specifically, for each , he wrote the integer into vertex . The remaining vertices are left empty. After that, he got tired and fell asleep.
Then, Aoki appeared. He is trying to surprise Takahashi by writing integers into all empty vertices so that the following condition is satisfied:
- Condition: For any two vertices directly connected by an edge, the integers written into these vertices differ by exactly .
Determine if it is possible to write integers into all empty vertices so that the condition is satisfied. If the answer is positive, find one specific way to satisfy the condition.
Constraints
- ()
- () (21:18, a mistake in this constraint was corrected)
- ()
- The given graph is a tree.
- All are distinct.
Input
The input is given from Standard Input in the following format:
Output
If it is possible to write integers into all empty vertices so that the condition is satisfied, print Yes
. Otherwise, print No
.
If it is possible to satisfy the condition, print lines in addition. The -th () of these lines should contain the integer that should be written into vertex . If there are multiple ways to satisfy the condition, any of those is accepted.
Sample Input 1Copy
5 1 2 3 1 4 3 3 5 2 2 6 5 7
Sample Output 1Copy
Yes 5 6 6 5 7
The figure below shows the tree when Takahashi fell asleep. For each vertex, the integer written beside it represents the index of the vertex, and the integer written into the vertex is the integer written by Takahashi.

Aoki can, for example, satisfy the condition by writing integers into the remaining vertices as follows:

This corresponds to Sample Output 1. Note that other outputs that satisfy the condition will also be accepted, such as:
Yes 7 6 8 7 7
Sample Input 2Copy
5 1 2 3 1 4 3 3 5 3 2 6 4 3 5 7
Sample Output 2Copy
No
Sample Input 3Copy
4 1 2 2 3 3 4 1 1 0
Sample Output 3Copy
Yes 0 -1 -2 -3
The integers written by Aoki may be negative or exceed .