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 (becausep4 = 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.

破圈法

#include<iostream>
#include<stdio.h>
#define maxx 200005
using namespace std;
int root=;
int ci=;
int ans=;
int a[maxx];
int vis[maxx];
void find(int x){
vis[x]=ci;
while(!vis[a[x]]){
x=a[x];
vis[x]=ci;
}
if(vis[a[x]]==ci){
if(root==){
root=x;
}
if(a[x]!=root){
a[x]=root;
ans++;
}
}
ci++;
}
int main(){
int n;
scanf("%d",&n);
for(int i=;i<=n;i++) vis[i]=;
for(int i=;i<=n;i++){
scanf("%d",&a[i]);
if(i==a[i]) root=i; }
for(int i=;i<=n;i++){
if(!vis[i]){
find(i);
}
}
printf("%d\n",ans);
for(int i=;i<n;i++){
printf("%d ",a[i]);
}
printf("%d\n",a[n]);
return ;
}

最新文章

  1. 说说 js String
  2. Web程序的运行原理及流程(二)
  3. CSS3绘制六边形
  4. 16年青岛网络赛 1002 Cure
  5. Java: Difference between ArrayList and LinkedList
  6. 基于Ogre的DeferredShading(延迟渲染)的实现以及应用
  7. 数据结构(线段树):SPOJ GSS3 - Can you answer these queries III
  8. 多条件搜索拼接Sql语句
  9. Ubuntu部署Jupyter
  10. Comparable和Comparator的差别
  11. 【django之Ajax】
  12. Springboot 生成验证码
  13. 【转】mysql explain执行计划详解
  14. Spring + Mybatis项目实现数据库读写分离
  15. TableLayoutPanel 行高列宽设置
  16. Linux 下建立 SSH 隧道做 Socket 代理
  17. Apache Spark 内存管理详解
  18. JQuery------鼠标双击时,不选中div里面的文字
  19. 【Css】Layout布局(一)
  20. Spring框架学习(8)spring mvc上传下载

热门文章

  1. 【整体二分+莫比乌斯函数+容斥原理】BZOJ2440
  2. STL之vector4
  3. iOS开发&mdash;&mdash;异常:[__NSCFNumber length]: unrecognized selector sent to instance
  4. identifier is too long 异常处理
  5. 在GIT中修改提交记录
  6. Telnet环境变量
  7. Jmeter调用Webapi介绍
  8. javascript的rsa加密和python的rsa解密
  9. POJ 3020 Antenna Placement 最大匹配
  10. oracle调优 浅析有效的游标管理