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 x i and y i (1 ≤ x i, y i ≤ 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.
<코드>
#include <iostream>
#include <stdio.h>
#include <vector>
using namespace std;
int visit[200001];
int X[1000], Y[1000];
vector<int> Edges[200001];
int dfs(int x)
{
int i;
visit[x] = 1;
for (i = 0; i < Edges[x].size(); i++) {
if (!visit[Edges[x][i]]) {
dfs(Edges[x][i]);
}
}
return 1;
}
int main() {
int ans;
int n, x, y;
int i, j;
scanf("%d", &n);
for (i = 1; i <= n; i++)
{
scanf("%d %d", &x, &y);
X[i] = x;
Y[i] = y;
}
for (i = 1; i <= n; i++) {
for (j = 1; j < i; j++) {
if (X[i] == X[j] || Y[i] == Y[j]) {
Edges[i].push_back(j);
Edges[j].push_back(i);
}
}
}
ans = 0;
for(i = 1; i <=n; i++){
if (visit[i] == 0) {
ans++;
dfs(i);
}
}
printf("%d", ans-1);
return 0;
}
https://codeforces.com/problemset/problem/217/A
'🧩PS > 🥈Nomal' 카테고리의 다른 글
[C/C++] 백준 1018번 - 체스판 다시 칠하기 (브루트 포스) (0) | 2020.08.13 |
---|---|
[C/C++] Codeforce 707B - Bakery (0) | 2020.07.03 |
[C/C++] 백준 1260번 - DFS와 BFS (DFS, BFS) (3) | 2020.07.02 |
[C/C++] 백준 1931번 - 회의실 배정 (그리디 알고리즘) (0) | 2020.07.01 |
[C/C++] 백준 11047번 - 동전 0 (그리디 알고리즘) (0) | 2020.07.01 |