반응형
https://www.acmicpc.net/problem/7569
본 문제는 2013 한국정보올림피아드 지역본선 초등부 3번 문제다. 입력이 2 ≤ M ≤ 100, 2 ≤ N ≤ 100, 1 ≤ H ≤ 100이다. 1,000,000의 입력이 들어오기 때문에 3중 for로 충분히 풀 수 있다.
- 토마토 정보 입력
- 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, -1, 0, 0, 0, 0};
int dy[] = {0, 0, 1, -1, 0, 0};
int dz[] = {0, 0, 0, 0, 1, -1};
queue<tuple<int, int, int>> 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 |
댓글