풀이
2차원 배열에서 dfs를 실행할 때, dfs가 재귀호출을 하는 것이 아닌, main함수에서 dfs를 몇번 호출하는지를 세면 된다. main 함수 안의 for문 안에 cnt변수를 증가시켜주는 방법으로 간단하게 풀 수 있다.
소스 코드
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
import java.util.*;
public class 유기농배추 {
static boolean[][] matrix;
static boolean[][] visited;
static int m,n,k;
static int[] dx = {-1,0,0,1};
static int[] dy = {0,-1,1,0};
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int tc = sc.nextInt();
for (int t = 0; t < tc; t++) {
m = sc.nextInt();
n = sc.nextInt();
k = sc.nextInt();
matrix = new boolean[m][n];
visited = new boolean[m][n];
int cnt = 0;
for (int i = 0; i < k; i++) {
int x = sc.nextInt();
int y = sc.nextInt();
matrix[x][y] = true;
}
for (int i = 0; i < m; i++) {
for (int j = 0; j < n; j++) {
if (matrix[i][j] && !visited[i][j]) {
dfs(i,j);
cnt++;
}
}
}
System.out.println(cnt);
}
}
static void dfs(int x, int y) {
if (visited[x][y])
return;
visited[x][y] = true;
for (int i = 0; i < 4; i++) {
int a = x + dx[i];
int b = y + dy[i];
if (a < 0 || a >= m || b < 0 || b >= n) {
continue;
}
if (matrix[a][b])
dfs(a,b);
}
}
}
태클 감사합니다.
조언 환영입니다.