Codeforces Round #475 (Div. 1) B. Destruction of a Tree

1 篇文章 0 订阅
1 篇文章 0 订阅

题目:http://codeforces.com/contest/963/problem/B


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.


sol:

注意到每次删点都是删去偶数条边(只能删去度数为偶数的点), 当n为偶数时无解。

考虑从根开始dfs,然后从底向上处理结点,当处理到结点u时,子树要么为空,要么为所有点度数为奇数的树。若u度数为偶数,以u为根的树可以依次处理,删去。


code1:

#include<iostream>
#include<cstring>
#include<stdio.h>
#include<algorithm>
#include<vector>
#include<queue>
#include<set>
#include<string>
#include<map>
#include<cmath>
#include<unordered_map>
#include<unordered_set>

using namespace std;

#define fi first
#define se second
#define pb push_back

const int maxn = 2e5+5;

vector<int> G[maxn];

bool vis[maxn];
int rt=0;

void print(int x){
    vis[x]=1;
    printf("%d\n",x);
    for(auto v : G[x]){
        if(!vis[v]) print(v);
    }
}

void dfs(int u,int fa){
    int d=0;
    for(auto v : G[u]){
        if(!vis[v]) dfs(v,u);
    }
    for(auto v: G[u] ){
        if(!vis[v]) d++;
    }
    if(fa) d++;
    if(d%2==0){
        printf("%d\n",u);
        vis[u]=1;
        for(auto v: G[u]){
            if(!vis[v]) print(v);
        }
    }
}

int main(){
    int n;
    scanf("%d",&n);
    if((n&1)==0){
        printf("NO\n");
        exit(0);
    }
    for(int i=1;i<=n;i++){
        int fa;
        scanf("%d",&fa);
        if(!fa) rt=i;
        else{
            G[fa].push_back(i);
        }
    }
    printf("YES\n");
    dfs(rt,0);
    return 0;
}


code2:

#include<bits/stdc++.h>

using namespace std;

const int maxn = 2e5+10;
#define pb push_back

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

int rt,n;
int d[maxn];
int p[maxn];

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

int main(){
    scanf("%d",&n);
    for(int i=1;i<=n;i++){
        scanf("%d",&p[i]);
        d[p[i]]++;
        if(p[i]){
            e[p[i]].pb(i);
            d[i]++;
        }else{
            rt=i;
        }
    }
    dfs(rt);
    vector<int> vv;
    vector<int> ans;
    for(int i : ord){
        if(d[i]&1){
            if(i==rt){
                printf("NO\n");
                exit(0);
            }
            vv.pb(i);
        }else{
            ans.pb(i);
            --d[p[i]];
        }
    }
    printf("YES\n");
    for(auto x:ans){
        printf("%d\n",x);
    }
    reverse(vv.begin(),vv.end());
    for(auto x:vv){
        printf("%d\n",x);
    }
    return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值