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

歡迎訪問 生活随笔!

生活随笔

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

编程问答

CF思维联系--CodeForces - 218C E - Ice Skating (并查集)

發布時間:2023/12/15 编程问答 30 豆豆
生活随笔 收集整理的這篇文章主要介紹了 CF思维联系--CodeForces - 218C E - Ice Skating (并查集) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

題目地址:24道CF的DIv2 CD題有興趣可以做一下。
ACM思維題訓練集合
Bajtek is learning to skate on ice. He’s a beginner, so his only mode of transportation is pushing off from a snow drift to the north, east, south or west and sliding until he lands in another snow drift. He has noticed that in this way it’s impossible to get from some snow drifts to some other by any sequence of moves. He now wants to heap up some additional snow drifts, so that he can get from any snow drift to any other one. He asked you to find the minimal number of snow drifts that need to be created.

We assume that Bajtek can only heap up snow drifts at integer coordinates.

Input
The first line of input contains a single integer n (1?≤?n?≤?100) — the number of snow drifts. Each of the following n lines contains two integers xi and yi (1?≤?xi,?yi?≤?1000) — the coordinates of the i-th snow drift.

Note that the north direction coinсides with the direction of Oy axis, so the east direction coinсides with the direction of the Ox axis. All snow drift’s locations are distinct.

Output
Output the minimal number of snow drifts that need to be created in order for Bajtek to be able to reach any snow drift from any other one.

Examples
Input
2
2 1
1 2
Output
1
Input
2
2 1
4 1
Output
0

這道題做過但是不記得當時怎么做的了,每次做都有新的感受。

并查集,一般的并查集不太行,如圖
代碼

#include <bits/stdc++.h> using namespace std; int fa[105]; int find(int n) {if(fa[n]==n) return n;else return fa[n]=find(fa[n]); } struct Node{int x,y; }node[105]; bool check(Node a,Node b) {if(a.x==b.x) return 1;else if(a.y==b.y)return 1;else return 0; } set<int> cnt; int main() {int n;cin>>n;for(int i=0;i<n;i++){fa[i]=i;cin>>node[i].x>>node[i].y;for(int j=0;j<i;j++){if(check(node[i],node[j])){fa[find(j)]=find(i);// cout<<fa[j]<<endl;}}}for(int i=0;i<n;i++){//cout<<find(fa[i])<<endl;cnt.insert(find(i));}cout<<cnt.size()-1<<endl; }

總結

以上是生活随笔為你收集整理的CF思维联系--CodeForces - 218C E - Ice Skating (并查集)的全部內容,希望文章能夠幫你解決所遇到的問題。

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