본문 바로가기
백준

[백준] 7569 - 토마토, C++

by 황인태(intaehwang) 2020. 1. 8.
반응형

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

 

7569번: 토마토

첫 줄에는 상자의 크기를 나타내는 두 정수 M,N과 쌓아올려지는 상자의 수를 나타내는 H가 주어진다. M은 상자의 가로 칸의 수, N은 상자의 세로 칸의 수를 나타낸다. 단, 2 ≤ M ≤ 100, 2 ≤ N ≤ 100, 1 ≤ H ≤ 100 이다. 둘째 줄부터는 가장 밑의 상자부터 가장 위의 상자까지에 저장된 토마토들의 정보가 주어진다. 즉, 둘째 줄부터 N개의 줄에는 하나의 상자에 담긴 토마토의 정보가 주어진다. 각 줄에는 상자 가로줄에 들어있는 토마

www.acmicpc.net

 본 문제는 2013 한국정보올림피아드 지역본선 초등부 3번 문제다. 입력이 2 ≤ M ≤ 100, 2 ≤ N ≤ 100, 1 ≤ H ≤ 100이다. 1,000,000의 입력이 들어오기 때문에 3중 for로 충분히 풀 수 있다. 

  1. 토마토 정보 입력
  2. BFS 탐색
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
#include <cstdio>
#include <queue>
#include <tuple>
 
using namespace std;
 
int d[100][100][100];
bool chk[100][100][100];
 
int main() {
    int m, n, h;
    scanf("%d %d %d"&m, &n, &h);
    int dx[] = {1-10000};
    int dy[] = {001-100};
    int dz[] = {00001-1};
    queue<tuple<intintint>> q;
    bool is_right;
    for (int z = 0; z < h; z++) {
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < m; j++) {
                scanf("%d"&d[i][j][z]);
                // 0이 입력됐는지 확인
                if (d[i][j][z] == 0) is_right = true;
                if (d[i][j][z] == 1) {
                    q.push(make_tuple(i, j, z));
                    chk[i][j][z] = true;
                }
            }
        }
    }
    // 0의 입력이 없으면
    if (!is_right) {
        printf("0");
        return 0;
    }
    while (!q.empty()) {
        int x, y, z;
        tie(x, y, z) = q.front();
        q.pop();
        for (int k = 0; k < 6; k++) {
            int nx = x + dx[k];
            int ny = y + dy[k];
            int nz = z + dz[k];
            if (nx >= 0 && nx < n && ny >= 0 && ny < m && nz >= 0 && nz < h) {
                if (d[nx][ny][nz] == 0 && !chk[nx][ny][nz]) {
                    q.push(make_tuple(nx, ny, nz));
                    chk[nx][ny][nz] = true;
                    d[nx][ny][nz] = d[x][y][z] + 1;
                }
            }
        }
    }
    int ans = 0;
    for (int z = 0; z < h; z++) {
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < m; j++) {
                if (d[i][j][z] == 0) { // 익지 않은 토마토가 있을 경우
                    printf("-1");
                    return 0;
                }
                if (ans < d[i][j][z]) ans = d[i][j][z];
            }
        }
    }
    printf("%d", ans-1);
    return 0;
}
 
 
cs
반응형

'백준' 카테고리의 다른 글

[백준 9093] 단어 뒤집기, C++  (0) 2020.01.08
[백준 10828] 스택, C++  (0) 2020.01.08
[백준 2468] 안전 영역, C++  (0) 2020.01.07
[백준 6603] 로또, C++  (0) 2020.01.07
[백준] 2583 - 영역 구하기, C++  (0) 2020.01.07
Buy me a coffeeBuy me a coffee

댓글