一道并查集的水题

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.
题目链接 https://vjudge.net/contest/278632#problem/A
题目大意 一道并查集的板子题,首先给你数N,表示接下来多少个数据,然后给你的第i个数pi,表示i和pi是连同的,视为同一个集合,最后让你输出有多少个这样的集合。
数据范围 n (1 ≤ n ≤ 1e4)
解题思路 套模板就过了,当 k == 根节点的值 ,ans++;

这个英文题看的不是很懂,在网上找了一下大意,发现好像是并查集
之前学并查集的时候就没懂,就找同学要了板子是这样的

在这里插入图片描述
简单优化了一下,感觉这样好像更加简单一点
int a[MAX_N];
int fa[MAX_N];
int find (int x){
return fa[x]==x?x:fa[x]=find(fa[x]);
}
void combine(int x,int y)
{
if(find(x) != find(y)) fa[find(x)] = find(y);
}

解决代码

#include<cstdio>
int a[10005];
int fa[10005];
int find (int x){
return fa[x]==x?x:fa[x]=find(fa[x]);
}

void combine(int x,int y)
{
if(find(x) != find(y)) fa[find(x)] = find(y);
}
int main ()
{
int n;
int ans = 0;
scanf("%d",&n);
for(int i = 1;i<=n;i++)
	fa[i] = i;
    for (int i = 1;i <= n;i++)
    scanf("%d",&a[i]);
    for (int j = 1;j <= n;j++)
    	combine(a[j],j);

    for (int k = 1;k <= n;k++)
        if (find(k) == k)ans++;
    printf("%d",ans);
return 0;
}
NOI(全国青少年信息学奥林匹克竞赛)是中国国内最高级别的信息学竞赛,旨在培养青少年信息学创新能力和竞赛实力。NOI的基础知识点之一是并查集,是一种用于解决集合类问题的数据结构。 修路问题可以很好地应用并查集,例如给定一些道路,每条道路连接两个城市,我们要求判断两个城市是否在同一个连通分量中(即是否可以通过已修的道路从一个城市到达另一个城市)。 在解决这个问题时,可以将每个城市看做一个节点,并用并查集来记录节点的父节点,初始时每个节点的父节点为它自身。随着修建道路,将连接的城市节点合并到同一个集合中,即将其中一个城市节点的父节点设为另一个城市节点的父节点。通过不断合并节点,最终我们可以得到若干个连通分量。 当需要判断两个城市是否在同一个连通分量中时,只需查找它们的根节点是否相同。如果根节点相同,则说明两个城市在同一个连通分量中,可以通过已修的道路相互到达;如果根节点不同,则说明两个城市不在同一个连通分量中,无法相互到达。 通过并查集,我们可以高效地解决修路问题,实现基础的连通性判断。在NOI竞赛中,修路问题常常是并查集一道典型应用题,通过掌握并查集的原理和应用,我们可以更好地解决该类问题,提高信息学竞赛的成绩。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值