[BaekJoon] 4963번 - 섬의 개수 [Java][C++]
[BaekJoon] 4963번 - 섬의 개수 [Java][C++]
1. 문제 풀이
주어진 지도에서 섬의 개수를 구하는 문제로 대각선으로 연결되어도 동일한 섬이라서 대각선까지 탐색하는 팔방탐색을 활용하면 된다. 지도의 각 좌표에 대해 땅이면 해당 섬의 크기를 구하고 방문 처리를 하는 과정을 반복하는 방식으로 해결할 수 있다.
2. 코드
1. BFS [Java]
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
import java.io.*;
import java.util.*;
public class Main {
static final int[] dr = {-1, -1, -1, 0, 1, 1, 1, 0};
static final int[] dc = {-1, 0, 1, 1, 1, 0, -1, -1};
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringBuilder sb = new StringBuilder();
StringTokenizer st;
while (true) {
st = new StringTokenizer(br.readLine());
int w = Integer.parseInt(st.nextToken());
int h = Integer.parseInt(st.nextToken());
if (w == 0 || h == 0) break;
int[][] map = new int[h][w];
for (int i = 0; i < h; i++) {
st = new StringTokenizer(br.readLine());
for (int j = 0; j < w; j++) {
map[i][j] = Integer.parseInt(st.nextToken());
}
}
int cnt = 0;
for (int i = 0; i < h; i++) {
for (int j = 0; j < w; j++) {
if (map[i][j] == 1) {
bfs(i, j, h, w, map);
cnt++;
}
}
}
sb.append(cnt).append("\n");
}
System.out.println(sb);
}
static void bfs(int sr, int sc, int h, int w, int[][] map) {
Queue<int[]> q = new ArrayDeque<>();
q.offer(new int[]{sr, sc});
map[sr][sc] = 0;
while (!q.isEmpty()) {
int[] node = q.poll();
for (int d = 0; d < 8; d++) {
int nr = node[0] + dr[d];
int nc = node[1] + dc[d];
if (nr < 0 || nr >= h || nc < 0 || nc >= w) continue;
if (map[nr][nc] == 0) continue;
q.add(new int[]{nr, nc});
map[nr][nc] = 0;
}
}
}
}
2. DFS [Java]
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
import java.io.*;
import java.util.*;
public class Main {
static final int[] dr = {-1, -1, -1, 0, 1, 1, 1, 0};
static final int[] dc = {-1, 0, 1, 1, 1, 0, -1, -1};
static int h;
static int w;
static int[][] map;
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringBuilder sb = new StringBuilder();
StringTokenizer st;
while (true) {
st = new StringTokenizer(br.readLine());
w = Integer.parseInt(st.nextToken());
h = Integer.parseInt(st.nextToken());
if (w == 0 || h == 0) break;
map = new int[h][w];
for (int i = 0; i < h; i++) {
st = new StringTokenizer(br.readLine());
for (int j = 0; j < w; j++) {
map[i][j] = Integer.parseInt(st.nextToken());
}
}
int cnt = 0;
for (int i = 0; i < h; i++) {
for (int j = 0; j < w; j++) {
if (map[i][j] == 1) {
dfs(i, j);
cnt++;
}
}
}
sb.append(cnt).append("\n");
}
System.out.println(sb);
}
static void dfs(int r, int c) {
map[r][c] = 0;
for (int d = 0; d < 8; d++) {
int nr = r + dr[d];
int nc = c + dc[d];
if (nr < 0 || nr >= h || nc < 0 || nc >= w) continue;
if (map[nr][nc] == 0) continue;
dfs(nr, nc);
}
}
}
3. 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
#include <bits/stdc++.h>
using namespace std;
int dr[8] = {-1, -1, -1, 0, 1, 1, 1, 0};
int dc[8] = {-1, 0, 1, 1, 1, 0, -1, -1};
int h, w;
int grid[50][50];
void bfs(int sr, int sc) {
queue<pair<int, int>> q;
q.push({sr, sc});
grid[sr][sc] = 0;
while (!q.empty()) {
auto [r, c] = q.front();
q.pop();
for (int d = 0; d < 8; d++) {
int nr = r + dr[d];
int nc = c + dc[d];
if (nr < 0 || nr >= h || nc < 0 || nc >= w) continue;
if (grid[nr][nc] == 0) continue;
q.push({nr, nc});
grid[nr][nc] = 0;
}
}
}
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
while (true) {
cin >> w >> h;
if (w == 0 || h == 0) break;
memset(grid, 0, sizeof(grid));
for (int i = 0; i < h; i++) {
for (int j = 0; j < w; j++) {
cin >> grid[i][j];
}
}
int cnt = 0;
for (int i = 0; i < h; i++) {
for (int j = 0; j < w; j++) {
if (grid[i][j] == 1) {
bfs(i, j);
cnt++;
}
}
}
cout << cnt << '\n';
}
}
4. DFS [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
#include <bits/stdc++.h>
using namespace std;
int dr[8] = {-1, -1, -1, 0, 1, 1, 1, 0};
int dc[8] = {-1, 0, 1, 1, 1, 0, -1, -1};
int h, w;
int grid[50][50];
void dfs(int r, int c) {
grid[r][c] = 0;
for (int d = 0; d < 8; d++) {
int nr = r + dr[d];
int nc = c + dc[d];
if (nr < 0 || nr >= h || nc < 0 || nc >= w) continue;
if (grid[nr][nc] == 0) continue;
dfs(nr, nc);
}
}
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
while (true) {
cin >> w >> h;
if (w == 0 || h == 0) break;
memset(grid, 0, sizeof(grid));
for (int i = 0; i < h; i++) {
for (int j = 0; j < w; j++) {
cin >> grid[i][j];
}
}
int cnt = 0;
for (int i = 0; i < h; i++) {
for (int j = 0; j < w; j++) {
if (grid[i][j] == 1) {
dfs(i, j);
cnt++;
}
}
}
cout << cnt << '\n';
}
}
This post is licensed under CC BY 4.0 by the author.