반응형
문제 링크:https://www.acmicpc.net/problem/4963
<문제 풀이> BFS
8방향 BFS를 돌리고 큐가 빌 때마다 섬의 개수를 카운트하면 됩니다.
<C++ 소스 코드>
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
|
#include <iostream>
#include <string>
#include <algorithm>
#include <queue>
#include <vector>
#include <stack>
#include <utility>
#include <climits>
using namespace std;
#define X first
#define Y second
int w, h;
int board[50][50];
bool visited[50][50];
int dx[8] = {0 ,-1, -1, -1, 0, 1, 1, 1};
int dy[8] = { 1, 1, 0,-1,-1,-1, 0, 1};
int bfs() {
queue<pair<int, int> > Q;
int res = 0;
for (int i = 0; i < h; i++) {
for (int j = 0; j < w; j++) {
if (!visited[i][j] && board[i][j] == 1) {
Q.push({ i, j });
visited[i][j] = true;
while (!Q.empty()) {
auto cur = Q.front(); Q.pop();
for (int dir = 0; dir < 8; dir++) {
int nx = cur.X + dx[dir];
int ny = cur.Y + dy[dir];
if (nx < 0 || ny < 0 || nx >= h || ny >= w)continue;
if (board[nx][ny] == 0 || visited[nx][ny])continue;
Q.push({ nx, ny });
visited[nx][ny] = true;
}
}
res++;
}
}
}
return res;
}
int main(void) {
ios::sync_with_stdio(false);
cin.tie(nullptr);
while (true) {
cin >> w >> h;
if (w == 0 && h == 0) break;
for (int i = 0; i < h; i++) {
for (int j = 0; j < w; j++) {
cin>> board[i][j];
}
}
cout << bfs()<< '\n';
fill(&board[0][0], &board[49][50], 0);
fill(&visited[0][0], &visited[49][50], 0);
}
return 0;
}
|
cs |
반응형
'알고리즘 문제풀이 > 백준' 카테고리의 다른 글
[백준 11967번] 불켜기 (0) | 2021.12.04 |
---|---|
[백준 3197번] 백조의 호수 (0) | 2021.12.02 |
[백준 1600번] 말이 되고픈 원숭이 (0) | 2021.11.25 |
[백준 17071번] 숨바꼭질 5 (0) | 2021.11.25 |
[백준 12851번] 숨바꼭질2 (0) | 2021.11.22 |