日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

PolandBall and Forest(并查集)

發布時間:2023/12/15 编程问答 39 豆豆
生活随笔 收集整理的這篇文章主要介紹了 PolandBall and Forest(并查集) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

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.
題意:給出每個點在樹上離他最遠的點,問一共有幾棵樹。
裸的并查集。。
代碼如下:

#include<bits/stdc++.h> #define ll long long using namespace std;const int maxx=1e5+100; int f[maxx]; int n;inline int getf(int u) {return (u==f[u]?u:f[u]=getf(f[u])); } inline void merge(int u,int v) {int t1=getf(u);int t2=getf(v);if(t1==t2) return;f[t1]=t2;return; } int main() {int x;scanf("%d",&n);for(int i=1;i<=n;i++) f[i]=i;for(int i=1;i<=n;i++){scanf("%d",&x);merge(i,x);}int ans=0;for(int i=1;i<=n;i++) if(f[i]==i) ans++;cout<<ans<<endl; }

努力加油a啊,(o)/~

總結

以上是生活随笔為你收集整理的PolandBall and Forest(并查集)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。