728x90
https://www.acmicpc.net/problem/1012
한 달만에 다시 dfs 를 풀어봤는데 기억이 잘 안나서 접근 방법을 보고 같은 코드가 아닌 다른 코드로 생각해서 풀었다.
시간이 40ms 정도 줄었는데, 아예 처음 접했을 때보다는 조금 구현이 수월해진 것 같다.
원래 visited 배열을 사용해서 풀었는데, 이번엔 없이 풀을 수 있을 것 같아 만들지 않고 풀었다.
단순히 0 , 1 만을 비교하는 것으로 구현했다.
static void dfs(int x, int y) {
for (int i = 0; i < 4; i++) {
int nx = x + dx[i];
int ny = y + dy[i];
// 조건 확인
if (nx >= 0 && nx < n && ny >= 0 && ny < m && arr[nx][ny] == 1) {
// 조건에 만족하면 0으로 바꿔주고 다시 dfs
arr[nx][ny] = 0;
dfs(nx, ny);
}
}
}
package BEAKJOON.silver;
import java.util.Scanner;
/**
* 시간 제한 메모리 제한 제출 정답 맞힌 사람 정답 비율
* 1 초 512 MB 120501 47008 31813 37.033%
*/
public class _1012 {
static int[][] arr;
static int[] dx = {-1, 0, 1, 0};
static int[] dy = {0, 1, 0, -1};
static int n; // 가로
static int m; // 세로
static int k; // 배추개수
static int count; // 지렁이 개수
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int t = sc.nextInt(); // 테스트 케이스
for (int i = 0; i < t; i++) {
count = 0;
n = sc.nextInt();
m = sc.nextInt();
k = sc.nextInt();
arr = new int[n][m];
for (int j = 0; j < k; j++) {
int x = sc.nextInt();
int y = sc.nextInt();
arr[x][y] = 1;
}
// 배열중에 1이 있으면 dfs 시작
for (int j = 0; j < n; j++) {
for (int l = 0; l < m; l++) {
if (arr[j][l] == 1) {
dfs(j, l);
count++;
}
}
}
System.out.println(count);
}
}
static void dfs(int x, int y) {
for (int i = 0; i < 4; i++) {
int nx = x + dx[i];
int ny = y + dy[i];
// 조건 확인
if (nx >= 0 && nx < n && ny >= 0 && ny < m && arr[nx][ny] == 1) {
// 조건에 만족하면 0으로 바꿔주고 다시 dfs
arr[nx][ny] = 0;
dfs(nx, ny);
}
}
}
}
728x90
'Algorithm & SQL > BAEKJOON' 카테고리의 다른 글
백준 JAVA 1629 곱셈 (0) | 2022.09.09 |
---|---|
백준 JAVA 3986 좋은 단어 (0) | 2022.09.09 |
백준 JAVA 1213 팰린드롬 만들기 (0) | 2022.09.08 |
백준 JAVA 3085 사탕 게임 (0) | 2022.09.06 |
백준 JAVA 2979 트럭 주차 (0) | 2022.09.05 |
댓글