BOJ 7576번 토마토 문제
BFS로 풀면 된다.
7576.cpp
#include <bits/stdc++.h>
using namespace std;
int dx[4] = {0, 0, 1, -1};
int dy[4] = {1, -1, 0, 0};
int tomato[1001][1001];
int d[1001][1001];
int n, m;
int main() {
scanf("%d %d", &m, &n);
queue<pair<int, int> > q;
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
scanf("%d", &tomato[i][j]);
d[i][j] = -1;
if (tomato[i][j] == 1) {
q.push({i, j});
d[i][j] = 0;
}
}
}
while (!q.empty()) {
int x = q.front().first;
int y = q.front().second;
q.pop();
for (int i = 0; i < 4; i++) {
int nx = x + dx[i];
int ny = y + dy[i];
if (0 <= nx && nx < n && 0 <= ny && ny < m) {
if (tomato[nx][ny] == 0 && d[nx][ny] == -1) { // 익지 않은 토마토 이면서 방문하지 않은 곳
d[nx][ny] = d[x][y] + 1;
q.push({nx, ny});
}
}
}
}
int result = 0;
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
result = max(result,d[i][j]);
}
}
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
if (tomato[i][j] == 0 && d[i][j] == -1) {
result = -1;
}
}
}
cout << result;
}
'알고리즘 & SQL > 백준(BOJ)' 카테고리의 다른 글
백준 1717번 : 집합의 표현 C++ (0) | 2018.11.21 |
---|---|
백준 7569번 : 토마토 C++ (1) | 2018.11.14 |
백준 2667번 : 단지번호붙이기 C++ (0) | 2018.11.14 |
백준 4963번 : 섬의 개수 C++ (0) | 2018.11.14 |
백준 16397번 : 탈출 C++ (0) | 2018.11.10 |