티스토리 뷰
https://www.acmicpc.net/problem/7569
백준 소스코드 [C++] 7569 토마토
#include <iostream>
#include <utility>
#include <vector>
#include <algorithm>
#include <queue>
#include <tuple>
using namespace std;
int arr[102][102][102];
int x[6] = { 1,-1,0,0,0,0 };
int y[6] = { 0,0,1,-1,0,0 };
int z[6] = { 0,0,0,0 ,1,-1};
queue<tuple<int,int, int>> q,t;
int num = 0,day=-1;
void bfs() {
while (q.empty() != true) {
while (q.empty() != true) {
t.push(q.front());
q.pop();
}
day++;
while (t.empty() != true) {
tuple<int, int, int> tt = t.front();
for (int a = 0;a < 6;a++)
if (arr[get<0>(tt) + z[a]][get<1>(tt) + y[a]][get<2>(tt) + x[a]] == 0)
{
q.push(make_tuple(get<0>(tt) + z[a], get<1>(tt) + y[a], get<2>(tt) + x[a]));
arr[get<0>(tt) + z[a]][get<1>(tt) + y[a]][get<2>(tt) + x[a]] = 1;
num++;
}
t.pop();
}
}
return;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int n, m,h;
int a = 0;
for (int i = 0;i < 102;i++)for (int j = 0;j < 102;j++)for (int k = 0;k < 102;k++) {
arr[i][j][k] = -1;
}
cin >> m >> n>>h;
for (int k = 1;k <= h;k++)
for (int j = 1;j <= n;j++)
for (int i = 1;i <= m;i++){
cin >> arr[k][j][i];
if (arr[k][j][i] == 1) {
q.push(make_tuple(k, j,i));
num++;
}
else if (arr[k][j][i] == -1)a++;
}
bfs();
if (num == h*n * m-a) cout << day;
else cout << "-1";
return 0;
}
'백준' 카테고리의 다른 글
백준 소스코드 [C++] 11047 동전 0 (0) | 2020.08.17 |
---|---|
백준 소스코드 [C++] 7576 토마토 (0) | 2020.08.17 |
백준 소스코드 [C++] 2667 단지번호붙이기 (0) | 2020.08.17 |
백준 소스코드 [C++] 2178 미로 탐색 (0) | 2020.08.17 |
백준 소스코드 [C++] 1992 쿼드트리 (0) | 2020.08.17 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- WWDC19
- HIG
- State Restoration
- 코딩대회
- observeOn
- CompositionalLayout
- test coverage
- 에드몬드 카프 알고리즘
- CPU와 Memory
- rxswift
- 최단경로 문제
- 컴퓨터 추상화
- 네트워크 유량
- 네트워크 플로우
- Testable
- 벨만포드 알고리즘
- WWDC17
- 포드 풀커슨 알고리즘
- WWDC21
- IOS
- 벨만포드 시간복잡도
- 부스트캠프 6기
- mach-o
- 강한 순환 참조
- 최대 매칭
- 다익스트라 시간복잡도
- WWDC16
- 최단경로문제
- 최단경로 알고리즘
- MeTal
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함