250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- java
- 정올 1620
- Bfs와DFS
- 코테준비
- 자바 코테
- 코테
- 중복조합
- N과M
- 정보처리기사
- 완탐
- 백준2251
- 주사위굴리기2
- 재귀함수
- 알고리즘개념
- 23288
- BFS
- 완전탐색
- 에라토스테네스의채
- 백준
- 중복순열
- 알고리즘
- 백준15652
- 자바
- D드라이브생성
- 삼성역테
- 백준13458
- 볼륨 만들기
- 파티션 크기 조정
- 전화번호속의암호
- 순열
Archives
- Today
- Total
뚱땅뚱땅
[문제] 백준 2636번 치즈 본문
728x90
내 풀이
처음에 치즈 가장자리를 처리하는 방법에 대해 고민을 많이 했다.
치즈가 있는 위치에서 DFS를 하는게 아니라, 외부공기 기준으로 DFS를 해냐가면, 쉽게 가장자리를 처리할 수 있다.
public class BOJ_2636 {
static int[][] matrix;
static int sero, garo;
public static void main(String[] args) throws IOException {
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(in.readLine(), " ");
sero = Integer.parseInt(st.nextToken());
garo = Integer.parseInt(st.nextToken());
matrix = new int[sero][garo];
for (int i = 0; i < sero; i++) {
st = new StringTokenizer(in.readLine(), " ");
for (int j = 0; j < garo; j++) {
matrix[i][j] = Integer.parseInt(st.nextToken());
}
}
// ArrayList<Integer> list = new ArrayList<>();
int time = 0;
int ans = 0;
while (true) {
int total = 0;
boolean[][] visited = new boolean[sero][garo];
dfs(0, 0, visited);
total += melt();
// list.add(total);
if (total == 0)
break;
ans = total;
time++;
}
System.out.println(time);
System.out.println(ans);
// for (int i = list.size() - 1; i >= 0; i--) {
// int a = list.get(i);
// if (a > 0) {
// System.out.println(a);
// break;
// }
// }
}
static int[] dx = { -1, 1, 0, 0 };
static int[] dy = { 0, 0, -1, 1 };
static void dfs(int r, int c, boolean[][] visited) {
visited[r][c] = true;
for (int d = 0; d < 4; d++) {
int nr = r + dx[d];
int nc = c + dy[d];
if (nr < 0 || nc < 0 || nr >= sero || nc >= garo)
continue;
if (visited[nr][nc])
continue;
if (matrix[nr][nc] == 1) // 치즈 가장자리 => -1로 처리
matrix[nr][nc] = -1;
if (matrix[nr][nc] == 0) // 외부 공기에 대해서만 dfs
dfs(nr, nc, visited);
}
}
// 치즈 가장자리 (-1로 저장됨) 녹이는 개수 반환
static int melt() {
int ans = 0;
for (int i = 0; i < sero; i++) {
for (int j = 0; j < garo; j++) {
if (matrix[i][j] == -1) {
ans++;
matrix[i][j] = 0; // 공기로 바꿔줌
}
}
}
return ans;
}
}
728x90
'알고리즘 > 백준' 카테고리의 다른 글
[문제] 백준 10844번 쉬운 계단 수 (0) | 2021.04.26 |
---|---|
[문제] 백준 17471번 게리맨더링 (0) | 2021.04.10 |
[문제] 백준 16236번 아기 상어 (0) | 2021.03.09 |
[문제] 백준 1182번 부분수열의 합 (0) | 2021.03.09 |
[문제] 백준 2580번 스도쿠 (0) | 2021.03.09 |
Comments