codeforces 217A-- Ice Skating

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
#include
#include
#include
using namespace std;

struct location
{
    int x,y;
}a[1005];

int p[1005];
int n;

void init()
{
    for (int i=1; i<=n; i++)
    {
        p[i] = i;
    }
}

int Find(int x)
{
    if (x != p[x])
    {
        p[x] = Find(p[x]);
    }
    return p[x];
}

void Union(int x,int y)
{
    int r1 = Find(x),r2 = Find(y);

    if (r1 != r2)
    {
        p[r1] = r2;
    }
}

int main()
{
    while (scanf ("%d",&n) != EOF)
    {
        init();

        for (int i=1; i<=n; i++)
        {
            scanf ("%d%d",&a[i].x,&a[i].y);
        }

        for (int i=1; i<=n; i++)
        {
            for (int j=1; j<=n; j++)
            {
                if (a[i].x==a[j].x || a[i].y==a[j].y)
                {
                    Union(i,j);
                }
            }
        }

        int num =0;

        for (int i=1; i<=n; i++)
        {
            if (i == p[i])
            {
                num++;
            }
        }
        printf ("%d\n",num-1);
    }

    return 0;
}

你可能感兴趣的:(codeforces 217A-- Ice Skating)