문제 출처: https://www.acmicpc.net/problem/7569



참고 문제) 토마토: http://qlyh8.tistory.com/155?category=731166


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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.LinkedList;
import java.util.Queue;
import java.util.StringTokenizer;
 
public class Main {
    private static int M, N, H;
    private static int[][][] box;
    private static int[] dirX = {010-100}; // X 좌표
    private static int[] dirY = {10-1000}; // Y 좌표
    private static int[] dirZ = {00001-1}; // Z 좌표
 
    public static void main(String[] args) throws Exception {
        BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
        String[] input = reader.readLine().split(" ");
        M = Integer.parseInt(input[0]);
        N = Integer.parseInt(input[1]);
        H = Integer.parseInt(input[2]);
        box = new int[H][N][M];
 
        for(int i=; i<H ; i++){
            for(int j=; j<N ; j++){
                StringTokenizer tokenizer = new StringTokenizer(reader.readLine());
                for(int k=; k<M ; k++) {
                    box[i][j][k] = Integer.parseInt(tokenizer.nextToken());
                }
            }
        }
 
        Queue<Tomato> queue = new LinkedList<>();
        for(int i=; i<H ; i++){
            for(int j=; j<N ; j++) {
                for(int k=; k<M ; k++){
                    if (box[i][j][k] == 1) {
                        queue.offer(new Tomato(i, j, k));
                    }
                }
            }
        }
 
        bfs(queue);
 
        int count = 0;
        for(int i=; i<H ; i++){
            for(int j=; j<N ; j++){
                for(int k=; k<M ; k++) {
                    if (box[i][j][k] == 0) {
                        System.out.println("-1");
                        return;
                    }
                    if (count < box[i][j][k]) {
                        count = box[i][j][k];
                    }
                }
            }
        }
 
        System.out.println(count-1);
    }
 
    private static void bfs(Queue<Tomato> queue){
        while(!queue.isEmpty()){
            Tomato front = queue.peek();
            queue.poll();
 
            for(int i=; i<; i++){ // 익은 토마토 주변 6방향
                int newH = front.getH() + dirZ[i];
                int newN = front.getN() + dirY[i];
                int newM = front.getM() + dirX[i];
 
                if((<= newH && newH < H) && (<= newN && newN < N) && (<= newM && newM < M)){
                    if(box[newH][newN][newM] == 0){
                        box[newH][newN][newM] += box[front.getH()][front.getN()][front.getM()] + 1;
                        queue.offer(new Tomato(newH, newN, newM));
                    }
                }
            }
        }
    }
 
    public static class Tomato{
        int h, n, m;
 
        Tomato(int h, int n, int m) {
            this.h = h;
            this.n = n;
            this.m = m;
        }
 
        int getH(){return h;}
 
        int getN(){return n;}
 
        int getM(){return m;}
    }
}
cs


'Algorithm' 카테고리의 다른 글

백준 2606번: 바이러스  (0) 2018.10.26
백준 2178번: 미로 탐색  (0) 2018.10.26
백준 7576번: 토마토  (0) 2018.10.26
백준 11866번: 조세퍼스 문제 0  (0) 2018.10.25
백준 1966번: 프린터 큐  (0) 2018.10.25

+ Recent posts