Destruction of a Tree

B. Destruction of a Tree
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

You are given a tree (a graph with n vertices and n - 1 edges in which it's possible to reach any vertex from any other vertex using only its edges).

A vertex can be destroyed if this vertex has even degree. If you destroy a vertex, all edges connected to it are also deleted.

Destroy all vertices in the given tree or determine that it is impossible.

Input

The first line contains integer n (1 ≤ n ≤ 2·105) — number of vertices in a tree.

The second line contains n integers p1, p2, ..., pn (0 ≤ pi ≤ n). If pi ≠ 0 there is an edge between vertices i and pi. It is guaranteed that the given graph is a tree.

Output

If it's possible to destroy all vertices, print "YES" (without quotes), otherwise print "NO" (without quotes).

If it's possible to destroy all vertices, in the next n lines print the indices of the vertices in order you destroy them. If there are multiple correct answers, print any.

Examples
Input
Copy
5
0 1 2 1 2
Output
Copy
YES
1
2
3
5
4
Input
Copy
4
0 1 2 3
Output
Copy
NO
Note

In the first example at first you have to remove the vertex with index 1 (after that, the edges (1, 2) and (1, 4) are removed), then the vertex with index 2 (and edges (2, 3) and (2, 5) are removed). After that there are no edges in the tree, so you can remove remaining vertices in any order.





#include<bits/stdc++.h>
using namespace std;

const int N=2e5+10;
int p[N];
int d[N];

vector<int> e[N];
vector<int> ord;

void dfs(int v){
    for(int u:e[v])
        dfs(u);
    ord.push_back(v);
}

int main(){
    ios_base::sync_with_stdio(0);
    cin.tie(0); cout.tie(0);
    //freopen("in.txt","r",stdin);
    int n;
    cin>>n;
    int root=0;

    for(int i=1;i<=n;i++){
        cin>>p[i];
        ++d[p[i]];
        if(p[i]){
            d[i]++;
        }else{
            root=i;
        }
        e[p[i]].push_back(i);
    }
    dfs(root);

    vector<int> e;
    vector<int> ans;
    for(int i:ord){
        if(d[i]%2){
            if(i==root){
                puts("NO");return 0;
            }
            e.push_back(i);
        }else{
            ans.push_back(i);
            d[p[i]]--;
        }
    }
    reverse(e.begin(),e.end());
    ans.insert(ans.end(),e.begin(),e.end());
    cout<<"YES\n";
    //puts("YES");
    for(int x:ans){
        cout<<x<<endl;
    }
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值