👀 문제
https://www.acmicpc.net/problem/1012
👊 도전
1. 설계
- DFS를 이용하여 상하좌우 이동할 수 있는 노드로 움직인다.
- 모여있는 노드들의 갯수를 센다.
2. 구현 (성공 코드)
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.Scanner;
/**
* @author HEESOO
*
*/
public class Main {
static int cnt;
static int m, n;
static int[][] map;
static boolean[][] visit;
public static void dfs(int x, int y) {
if(visit[x][y]) return;
visit[x][y]=true;
int[] dotX= {0,0,-1,1};
int[] dotY= {-1,1,0,0};
for(int i=0;i<4;i++) {
int xx=x+dotX[i];
int yy=y+dotY[i];
if(0<=xx&&xx<m&&0<=yy&&yy<n)
if(map[xx][yy]==1&&!visit[xx][yy])
dfs(xx, yy);
}
}
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner scan = new Scanner(System.in);
int t=scan.nextInt();
for(int tt=0;tt<t;tt++) {
cnt=0;
m=scan.nextInt();
n=scan.nextInt();
int k=scan.nextInt();
map=new int[m][n];
visit=new boolean[m][n];
for(int i=0;i<k;i++) {
int x=scan.nextInt();
int y=scan.nextInt();
map[x][y]=1;
}
for(int i=0;i<m;i++) {
for(int j=0;j<n;j++) {
if(map[i][j]==1&&!visit[i][j]) {
cnt++;
dfs(i, j);
}
}
}
System.out.println(cnt);
}
}
}
3. 결과
🤟 성공 🤟
4. 설명
- DFS를 구현한다
- DFS()에서 dotX, dotY 배열을 선언하여 주변 노드로 움직일 수 있는 총 4가지 방법을 저장한다. 인덱스 0부터 차례대로 상, 하, 좌, 우이다. 이떄 다음 노드로 이동할 좌표 xx, yy가 map범위를 넘어가지는 않는지 체크해야한다.
- DFS에서 현재 노드를 중심으로 모여있는 노드들을 방문하게 되고, 주변 탐색이 끝나면 다시 main문의 dfs를 호출했던 위치로 돌아오므로 이곳에서 cnt로 갯수를 세면 최소의 배추흰지렁이 마리 수를 구할 수 있다.