PivotOJ

Berry Battle

시간 제한: 2000ms메모리 제한: 1024MB출처: NCPC 2022BOJ 26025

문제

Berry picking is hard work, but also a peaceful and relaxing experience. After a long day of picking, it is common to see nothing but berries once you close your eyes to sleep. As your mind drifts into unconciousness, the berries will start living their own life and create all kinds of absurd scenarios.

You are given a tree with nn vertices numbered from 11 to nn. Initially, there is one berry in each vertex. There is also one ant in each vertex, guarding the berries. When picking the berry at vertex vv, all the ants that are on different vertices will walk one step towards vv. The ants already at vv will stay where they are. Note that since the graph is a tree, there is always one unique path the ants will take.

Your goal is to pick all the berries in the tree. The ants are no danger to you as long as they stay separated. But if at any point all the nn ants end up in the same vertex, they will attack you. Find a permutation of the vertices, so that if you pick the berries in that order, all the ants will not end up in the same vertex.

입력

The first line contains an integer nn (2n31052 \leq n \leq 3 \cdot 10^5).

The following n1n-1 lines each contain two integers uu and vv (1uvn1 \leq u \neq v \leq n), meaning that an edge goes between vertices uu and vv.

출력

If it is impossible to find an answer, print "NO".

Otherwise, first print "YES" on one line. On the second line, print nn integers p1,p2,,pnp_1, p_2, \cdots , p_n, the order in which to pick the berries (1pin1 \leq p_i \leq n). This means that the ii:th berry you pick is the one in vertex pip_i.

예제

예제 1

입력
10
1 2
2 3
3 4
3 9
3 7
7 10
1 5
5 6
1 8
출력
YES
1 5 6 3 4 9 8 7 10 2

예제 2

입력
3
1 2
2 3
출력
NO
이 문제는 채점 준비 중입니다. 테스트 데이터가 확보되면 제출이 가능합니다.