Destruction of a Tree

本文介绍了一个算法问题,即如何在给定的树形结构中,按照特定条件摧毁所有顶点。该问题要求从一个具有偶数度的顶点开始,逐步移除符合条件的顶点及其相连边,直到树中不再存在任何顶点。文章提供了完整的实现代码,并通过两个示例展示了算法的工作过程。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

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:19:18.741 [main] ERROR o.s.b.d.LoggingFailureAnalysisReporter - [report,40] - *************************** APPLICATION FAILED TO START *************************** Description: The dependencies of some of the beans in the application context form a cycle: logAspect (field private com.ruoyi.common.log.service.AsyncLogService com.ruoyi.common.log.aspect.LogAspect.asyncLogService) ↓ asyncLogService (field private com.ruoyi.job.api.RemoteLogService com.ruoyi.common.log.service.AsyncLogService.remoteLogService) ↓ org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$EnableWebMvcConfiguration ┌─────┐ | com.alibaba.cloud.sentinel.SentinelWebAutoConfiguration (field private java.util.Optional com.alibaba.cloud.sentinel.SentinelWebAutoConfiguration.sentinelWebInterceptorOptional) └─────┘ Action: Relying upon circular references is discouraged and they are prohibited by default. Update your application to remove the dependency cycle between beans. As a last resort, it may be possible to break the cycle automatically by setting spring.main.allow-circular-references to true. 10:19:18.742 [Thread-12] WARN c.a.n.c.n.NotifyCenter - [shutdown,136] - [NotifyCenter] Start destroying Publisher 10:19:18.742 [Thread-4] WARN c.a.n.c.h.HttpClientBeanHolder - [shutdown,108] - [HttpClientBeanHolder] Start destroying common HttpClient 10:19:18.742 [Thread-12] WARN c.a.n.c.n.NotifyCenter - [shutdown,153] - [NotifyCenter] Destruction of the end 10:19:18.742 [Thread-4] WARN c.a.n.c.h.HttpClientBeanHolder - [shutdown,114] - [HttpClientBeanHolder] Destruction of the end
07-02
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值