관리 메뉴

기억을 위한 기록들

[백준 7576: 토마토] - C++ 본문

Coding Test - cpp/BFS

[백준 7576: 토마토] - C++

에드윈H 2021. 1. 13. 10:23

www.acmicpc.net/problem/7576

 

7576번: 토마토

첫 줄에는 상자의 크기를 나타내는 두 정수 M,N이 주어진다. M은 상자의 가로 칸의 수, N은 상자의 세로 칸의 수를 나타낸다. 단, 2 ≤ M,N ≤ 1,000 이다. 둘째 줄부터는 하나의 상자에 저장된 토마토

www.acmicpc.net

#include<iostream>
#include<string>
#include<vector>
#include<queue>
#include<string.h>
using namespace std;

int n,m;
int map[1000][1000];

int dis[1000][1000];
bool check[1000][1000];

int dx[4] = { -1,0,1,0 };
int dy[4] = { 0,1,0,-1 };


int main() {

	memset(dis, 0, sizeof(dis));
	memset(check, false, sizeof(check));

	cin >> m >> n;

	int input = 0;

	queue<pair<int, int>> Q;

	for (int i = 0; i < n; i++)
	{

		for (int j = 0; j < m; j++)
		{

			cin >> input;
			map[i][j] = input;

			if (input == 1) {
				Q.push({ i, j });				
			}
			else if ( input == -1 ) {
				dis[i][j] = -1;
			}
		}
	}



	int TotalDay = 0;

	while (!Q.empty())
	{
		int xx = Q.front().first;
		int yy = Q.front().second;
		Q.pop();

		for (int i = 0; i < 4; i++)
		{
			int nextX = xx + dx[i];
			int nextY = yy + dy[i];

			if (nextY < 0 || m <= nextY || nextX < 0 || n <= nextX)
			{
				continue;
			}

			if (map[nextX][nextY] == 0 && !check[nextX][nextY])
			{
				check[nextX][nextY] = true;
				Q.push({ nextX,nextY });
				if (TotalDay < dis[xx][yy] + 1)
					TotalDay = dis[xx][yy] + 1;
				dis[nextX][nextY] = dis[xx][yy] + 1;
			}


		}
	}

	for (int i = 0; i < n; i++)
	{
		for (int j = 0; j < m; j++)
		{
			if (check[i][j] == false && map[i][j] == 0) {
				cout << -1 << endl;
				return 0;			
			}
		}
	}

	cout << TotalDay << endl;
	
	return 0;
}