7569번 - 토마토
3차원 BFS로 풀면 된다. 단 토마토가 익었더라고 하더라도, 거리가 짧으면 다시 큐에 넣어야 한다.
그리고 다 돌리고 나서 익지 않은 토마토가 있다면 -1을 출력해야 하고,
그렇지 않다면 dist 배열에서 가장 큰 값을 출력해야 한다.
<정답 코드>
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 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 | #include<iostream> #include<queue> #include<vector> typedef struct { int a; int b; int c; }tomato; using namespace std; int dx[6] = { 0,0,1,-1,0,0 }; int dy[6] = { 1,-1,0,0,0,0 }; int dz[6] = { 0,0,0,0,1,-1 }; int map[101][101][101]; int dist[101][101][101]; int n, m, h; vector<tomato> v; void bfs(tomato T) { queue<tomato> q; q.push(T); dist[T.a][T.b][T.c] = 0; while (!q.empty()) { int x = q.front().b; int y = q.front().c; int z = q.front().a; q.pop(); for (int d = 0; d < 6; d++) { tomato tmp; int nx = x + dx[d]; int ny = y + dy[d]; int nz = z + dz[d]; tmp.b = nx, tmp.c = ny, tmp.a = nz; if (nx >= 0 && ny >= 0 && nz >= 0 && nx < m && ny < n && nz < h && map[nz][nx][ny] != -1) { if (map[nz][nx][ny]==0) { map[nz][nx][ny] = 1; dist[nz][nx][ny] = dist[z][x][y] + 1; q.push(tmp); } else { if (dist[nz][nx][ny] > dist[z][x][y] + 1) { dist[nz][nx][ny] = dist[z][x][y] + 1; q.push(tmp); } } } } } } int main() { //freopen("input.txt", "r", stdin); ios::sync_with_stdio(false); cin.tie(NULL); cin >> n >> m >> h; for (int t = 0; t < h; t++) { for (int i = 0; i < m; i++) { for (int j = 0; j < n; j++) { cin >> map[t][i][j]; if (map[t][i][j] == 1) { tomato tmp; tmp.a = t, tmp.b = i, tmp.c = j; v.push_back(tmp); } } } } for (int i = 0; i < v.size(); i++) { bfs(v[i]); } int ans = 0; for (int t = 0; t < h; t++) { for (int i = 0; i < m; i++) { for (int j = 0; j < n; j++) { if (map[t][i][j] != -1) { if (map[t][i][j] == 0) { cout << "-1\n"; return 0; } else { if (dist[t][i][j] > ans) { ans = dist[t][i][j]; } } } } } } cout << ans << "\n"; return 0; } | cs |
반응형