반응형
문제
풀이
일반적인 BFS / DFS 문제입니다.
이차원배열을 탐색하면서, 방문하지 않았다면 bfs를 시행합니다.
근처에 1인 지역들을 모두 탐색해 cnt로 반환합니다.
cnt를 result vector에 넣어주고 정렬합니다.
그 후 result vector의 원소들을 하나씩 출력합니다.
소스 코드
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
#include<iostream>
#include<vector>
#include<algorithm>
#include<string>
#include<memory.h>
#include<queue>
using namespace std;
int N;
int map[25][25];
bool visited[25][25];
int dx[] = { 0, 0, -1, 1 };
int dy[] = { -1, 1, 0, 0 };
int BFS(int sx, int sy)
{
visited[sy][sx] = true;
if (map[sy][sx] == 0)
return 0;
queue<pair<int, int>> q;
q.push(make_pair(sx, sy));
int cnt = 1;
while (1)
{
if (q.empty())
break;
int x = q.front().first;
int y = q.front().second;
q.pop();
// 상하좌우 BFS
for (int i = 0; i <= 3; i++)
{
int nx = x + dx[i];
int ny = y + dy[i];
if (nx >= 0 && nx < N && ny >= 0 && nx < N)
{
if (!visited[ny][nx] && map[ny][nx] == 1)
{
q.push(make_pair(nx, ny));
visited[ny][nx] = true;
cnt += 1;
}
}
}
}
return cnt;
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cin >> N;
for (int i = 0; i < N; i++)
{
string s;
cin >> s;
for (int j = 0; j < N; j++)
{
// char 값 int로 변환
map[i][j] = s[j] - 48;
}
}
vector<int> result;
for (int i = 0; i < N; i++)
{
for (int j = 0; j < N; j++)
{
if (!visited[i][j])
{
int numOfHouse = BFS(j, i);
if (numOfHouse != 0)
result.push_back(numOfHouse);
}
}
}
sort(result.begin(), result.end());
cout << result.size() << '\n';
for (int numOfHouse : result)
{
cout << numOfHouse << '\n';
}
return 0;
}
|
cs |
반응형
'알고리즘 > 백준' 카테고리의 다른 글
[백준 2343] 기타 레슨 C++ (0) | 2022.06.26 |
---|---|
[백준 2805] 나무 자르기 C++ (0) | 2022.06.22 |
[백준 1260] DFS와 BFS C++ (0) | 2022.05.31 |
[백준 15654] N과 M (5) C++ (0) | 2022.05.02 |
[백준 13335] 트럭 C++ (0) | 2022.04.30 |