(217A)codeforce

来源:互联网 发布:svm 核函数 知乎 编辑:程序博客网 时间:2024/05/29 15:25
A. Ice Skating
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

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.

Sample test(s)
input
22 11 2
output
1
input
22 14 1
output
0

单纯搜索,你按照X或者Y都可以,如果搜索不到,就++,然后继续搜
#include<iostream>#include<cstdio>#include<string.h>#include<string>#include<set>#include<algorithm>#include<cmath>#define ll __int64#define MAX 1000009using namespace std;int vis[MAX];int x[MAX];int y[MAX];int t;void dfs(int i){    //cout<<t<<endl;    vis[i] = 1;    for(int j = 0;j<t;j++)    {        if(!vis[j]&&(x[j]==x[i]||y[i]==y[j]))//符合条件就可以向下搜索        {            dfs(j);        }    }}int main(){    int sum;    while(~scanf("%d",&t))    {        sum = 0;        for(int i = 0;i<t;i++)        {            scanf("%d%d",&x[i],&y[i]);        }        for(int i = 0;i<t;i++)        {            if(!vis[i])            {                dfs(i);                sum++;            }        }        printf("%d\n",sum-1);    }    return 0;}

0 0
原创粉丝点击