Codeforces134Div.2-C (consolidated search)

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

Question meaning: Given n points, it is required to only move up, down, left, and right. If you want to reach any two points, fill in at least a few points

Idea: Union search set, add a set with the same abscissa or ordinate, and finally check a few sets, the number of sets -1 is the answer

AC code:

#include<iostream>
#include<algorithm>
#include<cstdio>
using namespace std;
struct dian
{
    
    
    int x,y;
};
int  father[110];
dian g[110];
int f(int x)
{
    
    
    if(father[x]==x)
        return x;
    else
        return father[x]=f(father[x]);
}
void lian(int a,int b)
{
    
    
    int l=f(a);//太久没写并查集了
    int r=f(b);//这个地方一开始写错了WA了四五次
    father[r]=l;
}
int main()
{
    
    
    int t;
    scanf("%d",&t);
     for(int i=0;i<110;i++)
        father[i]=i;
    for(int i=0;i<t;i++)
    {
    
    
        scanf("%d%d",&g[i].x,&g[i].y);
        for(int j=0;j<i;j++)
        {
    
    
            if(g[i].x==g[j].x||g[i].y==g[j].y)
            {
    
    
                lian(i,j);
            }
        }
    }
    int ans=0;
    for(int i=0;i<t;i++)
    {
    
    
        if(father[i]==i)
            ans++;
    }
    printf("%d\n",ans-1);
}

Guess you like

Origin blog.csdn.net/weixin_43244265/article/details/104453201