Codeforces #363 (Div. 2) D. Fix a Tree

给定一个可能不合法的树序列,你需要找到需要改变的最小元素数量以使其成为一个合法的树序列。合法序列必须有一个节点是自己的父节点,即根节点。输出需要更改的最小数量,并给出一个示例的合法序列。
摘要由CSDN通过智能技术生成
D. Fix a Tree
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

A tree is an undirected connected graph without cycles.

Let's consider a rooted undirected tree with n vertices, numbered 1 through n. There are many ways to represent such a tree. One way is to create an array with n integers p1, p2, ..., pn, where pi denotes a parent of vertex i (here, for convenience a root is considered its own parent).

For this rooted tree the array p is [2, 3, 3, 2].

Given a sequence p1, p2, ..., pn, one is able to restore a tree:

  1. There must be exactly one index r that pr = r. A vertex r is a root of the tree.
  2. For all other n - 1 vertices i, there is an edge between vertex i and vertex pi.

A sequence p1, p2, ..., pn is called valid if the described procedure generates some (any) rooted tree. For example, for n = 3 sequences (1,2,2)(2,3,1)and (2,1,3) are not valid.

You are given a sequence a1, a2, ..., an, not necessarily valid. Your task is to change the minimum number of elements, in order to get a valid sequence. Print the minimum number of changes and an example of a valid sequence after that number of changes. If there are many valid sequences achievable in the minimum number of changes, print any of them.

Input

The first line of the input contains an integer n (2 ≤ n ≤ 200 000) — the number of vertices in the tree.

The second line contains n integers a1, a2, ..., an (1 ≤ ai ≤ n).

Output

In the first line print the minimum number of elements to change, in order to get a valid sequence.

In the second line, print any valid sequence possible to get from (a1, a2, ..., an) in the minimum number of changes. If there are many such sequences, any of them will be accepted.

Examples
input
4
2 3 3 4
output
1
2 3 4 4 
input
5
3 2 2 5 3
output
0
3 2 2 5 3 
input
8
2 3 5 4 1 6 6 7
output
2
2 3 7 8 1 6 6 7
Note

In the first sample, it's enough to change one element. In the provided output, a sequence represents a tree rooted in a vertex 4 (because p4 = 4), which you can see on the left drawing below. One of other correct solutions would be a sequence 2 3 3 2, representing a tree rooted in vertex 3 (right drawing below). On both drawings, roots are painted red.

In the second sample, the given sequence is already valid.

题意:给你一堆点阿,线阿,环阿,让你改最小的边(指向)变成树。

思路:有环拆环指向根节点,无环直接指向根节点。除非全是环否则根节点绝对不为环中的点(否则多变     一个点),用并查集查环,没有构成环添加,构成环变指向。

问题:夹克聚聚说他的dfs盖了139ms的时间戳,弱弱写的超时了...

代码:

#include <iostream>
#include <cstring>
#include <string>
#include <cstdio>
#include <algorithm>

using namespace std;

int father[200000 + 5];
int a[200000 + 5];
bool vis[200000 + 5];
int root = -1 ,sum;
int ffather(int x)
{
    return father[x] == x?x:father[x]=ffather(father[x]);

}

void un(int x, int y)  //合并:0-0-0-0 和 1-1-1-1,找到最边上的0,1,变成0-0-0-0==1-1-1-1
{
    x = ffather(x);
    y = ffather(y);
    if(x == y)
        return;
    else
        father[x] = y;
}
int main()
{

    int n;
    cin>>n;
    for(int i = 1; i <= n; i++)
        cin>>a[i];
    for(int i = 1; i <= n; i++)
    {
        father[i] = i;            //初始化
    }
    for(int i = 1; i <= n; i++)
    {
         if(a[i] == i)
        {
            root = a[i];          //找根节点
            break;
        }
    }
  
    for(int i = 1; i <= n; i++)
    {
        if(ffather(a[i]) == ffather(i))          //若加入i和a[i]则成环
        {
            if(root == -1)                       //给的数据全是环
            {
                root = i;
                a[i] = i;
                sum++;
            }
            else if(a[i] != root)
            {
                a[i] = root;
                sum++;
            }
        }
        else
            un(i,a[i]);
    }
    for(int i = 1; i <= n; i++)
    {
        if(i == a[i] && i != root)
        {
            a[i] = root;
            sum++;
        }
    }

    cout<<sum<<endl<<a[1];
    for(int i = 2; i <= n; i++)
        cout<<" "<<a[i];

}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
毕业设计,基于SpringBoot+Vue+MySQL开发的公寓报修管理系统,源码+数据库+毕业论文+视频演示 现代经济快节奏发展以及不断完善升级的信息化技术,让传统数据信息的管理升级为软件存储,归纳,集中处理数据信息的管理方式。本公寓报修管理系统就是在这样的大环境下诞生,其可以帮助管理者在短时间内处理完毕庞大的数据信息,使用这种软件工具可以帮助管理人员提高事务处理效率,达到事半功倍的效果。此公寓报修管理系统利用当下成熟完善的Spring Boot框架,使用跨平台的可开发大型商业网站的Java语言,以及最受欢迎的RDBMS应用软件之一的MySQL数据库进行程序开发。公寓报修管理系统有管理员,住户,维修人员。管理员可以管理住户信息和维修人员信息,可以审核维修人员的请假信息,住户可以申请维修,可以对维修结果评价,维修人员负责住户提交的维修信息,也可以请假。公寓报修管理系统的开发根据操作人员需要设计的界面简洁美观,在功能模块布局上跟同类型网站保持一致,程序在实现基本要求功能时,也为数据信息面临的安全问题提供了一些实用的解决方案。可以说该程序在帮助管理者高效率地处理工作事务的同时,也实现了数据信息的整体化,规范化与自动化。 关键词:公寓报修管理系统;Spring Boot框架;MySQL;自动化;VUE
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值