문제
https://www.acmicpc.net/problem/7576
풀이과정
BFS로 해결할 수 있는 문제. 익은 토마토부터 BFS를 시작하여 거리를 재는 식으로 풀이하면 된다. 문제에서 토마토가 모두 익지 못할 경우 -1을 출력하라고 했는데 이 예외를 까먹고 하지 않아서 몇 번 틀렸다.
소스코드
#include <iostream>
#include <queue>
using namespace std;
#define MAX 1000
int N, M;
int map[MAX][MAX];
int tomato[MAX][MAX];
int dx[4] = { 0,0,-1,1 };
int dy[4] = { -1,1,0,0 };
int main()
{
ios::sync_with_stdio(false);
cin >> M >> N;
queue<pair<int, int>> q;
for (int i = 0; i < N; i++)
{
for (int j = 0; j < M; j++)
{
cin >> map[i][j];
tomato[i][j] = -1;
if (map[i][j] == 1)
{
q.push(make_pair(i, j));
tomato[i][j] = 0;
}
}
}
while (!q.empty())
{
int x = q.front().first;
int y = q.front().second;
q.pop();
for (int k = 0; k < 4; k++)
{
int nx = x + dx[k]; int ny = y + dy[k];
if (0 <= nx && nx < N && 0 <= ny && ny < M)
{
if ( map[nx][ny] == 0 && tomato[nx][ny] == -1)
{
tomato[nx][ny] = tomato[x][y] + 1;
q.push(make_pair(nx, ny));
}
}
}
}
int ans = 0;
for (int i = 0; i < N; i++)
{
for (int j = 0; j < M; j++)
{
if (ans < tomato[i][j])
{
ans = tomato[i][j];
}
}
}
for (int i = 0; i<N; i++) {
for (int j = 0; j<M; j++) {
if (map[i][j] == 0 && tomato[i][j] == -1) {
ans = -1;
}
}
}
cout << ans << "\n";
return 0;
}