Competition/Baekjoon

[백준] 7576번 토마토

bisi 2020. 3. 18. 11:32
문제 출처 

https://www.acmicpc.net/problem/7576

 

7576번: 토마토

첫 줄에는 상자의 크기를 나타내는 두 정수 M,N이 주어진다. M은 상자의 가로 칸의 수, N은 상자의 세로 칸의 수를 나타낸다. 단, 2 ≤ M,N ≤ 1,000 이다. 둘째 줄부터는 하나의 상자에 저장된 토마토들의 정보가 주어진다. 즉, 둘째 줄부터 N개의 줄에는 상자에 담긴 토마토의 정보가 주어진다. 하나의 줄에는 상자 가로줄에 들어있는 토마토의 상태가 M개의 정수로 주어진다. 정수 1은 익은 토마토, 정수 0은 익지 않은 토마토, 정수 -1은 토마

www.acmicpc.net

 

 

 

접근 방식 및 풀이

BFS활용.. 너무너무 어렵다.!ㅜ 직접 그려가면서 이해했습니다.

 

# BFS 구현 과정

 

 

 

 

소스 코드 
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.LinkedList;
import java.util.List;
import java.util.Queue;

class  Tomato{
    int x;
    int y;

    public Tomato(int x, int y) {
        this.x = x;
        this.y = y;
    }
}

public class Main {

    static int[] dx = {0,0,-1,1};
    static int[] dy = {-1,1,0,0};

    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] str1= br.readLine().split(" ");

        int m  = Integer.parseInt(str1[0]);
        int n  = Integer.parseInt(str1[1]);

        int[][] arr = new int[n][m];
        int[][] dist = new int[n][m];

        Queue<Tomato> queue = new LinkedList<>();
        for (int i = 0; i < n ; i++) {
            String[] str2 = br.readLine().split(" ");
            for (int j = 0; j < m; j++) {
                arr[i][j] = str2[j].charAt(0) - '0';
                if (arr[i][j] == 1) {// 익은 토마토들만 큐에 넣어준다.
                    queue.add(new Tomato(i, j));
                }
            }
        }
        while(! queue.isEmpty()){
            //queue에 있는것을 체크하는 곳
            Tomato  tomato = queue.remove();
            int x = tomato.x;
            int y = tomato.y;            

            for (int i = 0; i <dx.length ; i++) {
                int nx = x+ dx[i];
                int ny = y+ dy[i];

                if(0 <= nx && nx < n && 0<=ny && ny < m){// 배열 범위 안에 있는 index만 처리
                   
                   
                    if(arr[nx][ny] ==0 && dist[nx][ny] == 0){
                        // 배열안에 값이 0인 경우(토마토가 익지 않은경우)는 1을 더해준다.
                        queue.add(new Tomato(nx, ny));
                        dist[nx][ny] = dist[x][y] + 1; // 모두 익지 않는 경우의수는 서로 더해가면 0이 나오기때문에 따로 처리 하지 않음
                        
                    }
                }
            }
        }

        int ans = 0;
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < m; j++) {             
                ans = Math.max(ans, dist[i][j]);
            }
        }
        //모든게 0이면 -1 예외처리
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < m; j++) {
                if(arr[i][j] ==0&& dist[i][j] ==0){
                    ans = -1;
                }
            }
        }
        System.out.println(ans);
    }

}

 

 

 

 

결과 

 

 

'Competition > Baekjoon' 카테고리의 다른 글

[백준] 11653번 자바 소인수분해  (0) 2020.03.18
[백준] 11576 자바 스택 활용  (0) 2020.03.17
[백준] 1976번 그래프  (0) 2020.03.17