time limit per test1 second

memory limit per test256 megabytes

inputstandard input

outputstandard output

PolandBall lives in a forest with his family. There are some trees in the forest. Trees are undirected acyclic graphs with k vertices and k - 1 edges, where k is some integer. Note that one vertex is a valid tree.

There is exactly one relative living in each vertex of each tree, they have unique ids from 1 to n. For each Ball i we know the id of its most distant relative living on the same tree. If there are several such vertices, we only know the value of the one with smallest id among those.

How many trees are there in the forest?

Input

The first line contains single integer n (1 ≤ n ≤ 104) — the number of Balls living in the forest.

The second line contains a sequence p1, p2, …, pn of length n, where (1 ≤ pi ≤ n) holds and pi denotes the most distant from Ball i relative living on the same tree. If there are several most distant relatives living on the same tree, pi is the id of one with the smallest id.

It’s guaranteed that the sequence p corresponds to some valid forest.

Hacking: To hack someone, you should provide a correct forest as a test. The sequence p will be calculated according to the forest and given to the solution you try to hack as input. Use the following format:

In the first line, output the integer n (1 ≤ n ≤ 104) — the number of Balls and the integer m (0 ≤ m < n) — the total number of edges in the forest. Then m lines should follow. The i-th of them should contain two integers ai and bi and represent an edge between vertices in which relatives ai and bi live. For example, the first sample is written as follows:

5 3

1 2

3 4

4 5

Output

You should output the number of trees in the forest where PolandBall lives.

Interaction

From the technical side, this problem is interactive. However, it should not affect you (except hacking) since there is no interaction.

Examples

input

5

2 1 5 3 3

output

2

input

1

1

output

1

Note

In the first sample testcase, possible forest is: 1-2 3-4-5.

There are 2 trees overall.

In the second sample testcase, the only possible graph is one vertex and no edges. Therefore, there is only one tree.

【题目链接】:http://codeforces.com/contest/755/problem/C

【题解】



从任意一个点u开始dfs,找离它最远的点v;

然后从v再dfs找离它最远的点v’;

v和v’是树的直径的两个端点;



v和v’所在的树中的任意一个节点x,离x最远的点要么是v要么是v’;



【完整代码】

#include <bits/stdc++.h>
using namespace std;
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
#define LL long long
#define rep1(i,a,b) for (int i = a;i <= b;i++)
#define rep2(i,a,b) for (int i = a;i >= b;i--)
#define mp make_pair
#define pb push_back
#define fi first
#define se second
#define rei(x) scanf("%d",&x)
#define rel(x) scanf("%I64d",&x) typedef pair<int,int> pii;
typedef pair<LL,LL> pll; const int dx[9] = {0,1,-1,0,0,-1,-1,1,1};
const int dy[9] = {0,0,0,-1,1,-1,1,-1,1};
const double pi = acos(-1.0);
const int MAXN = 1e4+100; int n;
int p[MAXN];
bool bo[MAXN]; int main()
{
//freopen("F:\\rush.txt","r",stdin);
rei(n);
rep1(i,1,n)
rei(p[i]);
memset(bo,false,sizeof bo);
int cnt = 0;
rep1(i,1,n)
if (!bo[p[i]])
{
int x = p[i];
bo[x] = true;
int y = p[x];
bo[y] = true;
cnt++;
}
cout << cnt << endl;
return 0;
}

最新文章

  1. Java—字符串小结
  2. Retrofit与RXJava整合
  3. 基于GRPC+consul通信的服务化框架(转)
  4. 斯坦福机器学习实现与分析之八(kmeans算法)
  5. 多表利用DIH批量导入数据并建立索引注意事项
  6. Android 常用工具类之LogUtil,可以定位到代码行,双击跳转
  7. WinMain函数详解(转载)
  8. 如何将松散的dll打包进需要发布的exe
  9. MyBatis(3.2.3) - Configuring MyBatis using XML, Settings
  10. ASP.NET MVC 4高级编程(第4版)
  11. Encoding filter 编码过滤器
  12. Chrome 43+浏览器 Cookies encrypted_value解密脚本
  13. abstract class 与interface
  14. Linux命令 比较文件
  15. 例 7-10 uva12212(迭代加深搜索)
  16. 初识Java多线程编程
  17. tex 进度条
  18. 【python路飞】编码 ascii码(256位 =1个字节)美国;unicode(万国码)中文 一共9万个 用4个字节表示这9万个子 17位就能表示
  19. Python安装与Pycharm使用入门
  20. css学习2

热门文章

  1. 通过no-gui模式运行jmeter脚本与生成报告
  2. MySQL 5.7 多实例安装部署实例
  3. teamviewer连接不上的原因及解决方法有哪些
  4. web service 原理
  5. 【MemSQL Start[c]UP 3.0 - Round 1 C】 Pie Rules
  6. 【AtCoder Beginner Contest 074 B】Collecting Balls (Easy Version)
  7. 关于android的2.2与4.4的文件读取的一点发现
  8. C语言深度剖析-----指针数组和数组指针的分析
  9. 【POJ 1226】Substrings
  10. php对象和数组的相互转换(还是可以去找没有没php的高阶课程看看看)(要不别人分析一下重点要点,要不自己来,不然 效果真的不好)