3893.Ice Skating

Time Limit: 1s Memory Limit: 256MB

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 Format(From the terminal/stdin)

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

Note that the north direction coincides with the direction of Oy axis, so the east direction coincides with the direction of the Ox axis. All snow drift's locations are distinct.

Output Format(To the terminal/stdout)

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 Input 1

Copy
2
2 1
1 2
 \n
 · \n
 · \n

Sample Output 1

Copy
1
 \n

Sample Input 2

Copy
2
2 1
4 1
 \n
 · \n
 · \n

Sample Output 2

Copy
0
 \n

Submit

请先 登录

© 2025 FAQs