CF1508E.Tree Calendar

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Yuu Koito and Touko Nanami are newlyweds! On the wedding day, Yuu gifted Touko a directed tree with nn nodes and rooted at 11 , and a labeling aa which is some DFS order of the tree. Every edge in this tree is directed away from the root.

After calling dfs(1) the following algorithm returns aa as a DFS order of a tree rooted at 11 :

<pre class="verbatim"><br></br>order := 0<br></br>a := array of length n <br></br><br></br>function dfs(u):<br></br>    order := order + 1<br></br>    a[u] := order<br></br>    for all v such that there is a directed edge (u -> v):<br></br>        dfs(v)<br></br>

Note that there may be different DFS orders for a given tree.

Touko likes the present so much she decided to play with it! On each day following the wedding day, Touko performs this procedure once:

  • Among all directed edges uvu \rightarrow v such that au<ava_u < a_v , select the edge uvu' \rightarrow v' with the lexicographically smallest pair (au,av)(a_{u'}, a_{v'}) .
  • Swap aua_{u'} and ava_{v'} .

Days have passed since their wedding, and Touko has somehow forgotten which date the wedding was and what was the original labeling aa ! Fearing that Yuu might get angry, Touko decided to ask you to derive these two pieces of information using the current labeling.

Being her good friend, you need to find the number of days that have passed since the wedding, and the original labeling of the tree. However, there is a chance that Touko might have messed up her procedures, which result in the current labeling being impossible to obtain from some original labeling; in that case, please inform Touko as well.

输入格式

The first line of the input contains an integer nn ( 2n31052 \le n \le 3 \cdot 10^5 ) — the number of nodes on the tree.

The second line contains nn integers a1a_1 , a2a_2 , ..., ana_n ( 1ain1 \le a_i \le n , all aia_i are distinct) — the current labeling of the tree.

Each of the next n1n - 1 lines contains two integers uiu_i and viv_i ( 1u,vn1 \le u, v \le n , uvu \neq v ), describing an directed edge from uiu_i to viv_i . The edges form a directed tree rooted at 11 .

输出格式

If the current labeling is impossible to arrive at from any DFS order, print NO.

Else, on the first line, print YES. On the second line, print a single integer denoting the number of days since the wedding. On the third line, print nn numbers space-separated denoting the original labeling of the tree.

If there are multiple correct outputs, print any. This means: you are allowed to output any pair (DFS order, number of days), such that we get the current configuration from the DFS order you provided in exactly the number of days you provided.

输入输出样例

  • 输入#1

    7
    4 5 2 1 7 6 3
    1 5
    7 6
    1 2
    2 7
    3 4
    1 3

    输出#1

    YES
    5
    1 4 2 3 7 6 5
  • 输入#2

    7
    7 6 5 3 1 4 2
    4 3
    2 5
    3 7
    1 4
    7 2
    2 6

    输出#2

    NO

说明/提示

The following animation showcases the first sample test case. The white label inside the node represents the index of the node ii , while the boxed orange label represents the value aia_i .

首页