Deff_Dev

[백준] 7576번 토마토 본문

코딩테스트/백준

[백준] 7576번 토마토

Deff_a 2024. 8. 15. 23:54

 

문제

https://www.acmicpc.net/problem/7576

풀이

BFS를 통해 익은 토마토(1) 주변 덜 익은 토마토(0)를 탐색하고 익은 토마토(1)로 바꿔준다.

 

BFS가 끝난 후, 전체 맵을 탐색하고 덜 익은 토마토(0)가 있다면 -1 출력하고,

덜 익은 토마토(0)가 없다면 맵에서 가장 큰 값을 출력한다. 

#include <iostream>
#include <vector>
#include <queue>

// https://www.acmicpc.net/problem/7576

using namespace std;

int m, n;

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

vector<vector<int>> map;
queue <pair<int, int>> q;

void BFS()
{
	while (!q.empty()) {
		pair<int,int > front = q.front();

		q.pop();

		for (int i = 0; i < 4; i++) {
			int moveY = front.first + dy[i];
			int moveX = front.second + dx[i];

			if (moveY < 0 || moveY >= n || moveX < 0 || moveX >= m)
				continue;

			if (map[moveY][moveX] == 0) {
				map[moveY][moveX] = map[front.first][front.second] + 1;
				q.push({ moveY,moveX });
			}
		}
	}
}
void StartSearch() {
	int result = 1;

	BFS();

	for (int i = 0; i < n; i++) {
		for (int j = 0; j < m; j++) {
			if (map[i][j] == 0) {
				cout << "-1\n";
				return;
			}

			if (result < map[i][j]) {
				result = map[i][j];
			}
		}
	}
	cout << result - 1 << "\n";
}
int main() {
	vector<pair<int, int>> initVec;

	cin >> m >> n;

	for (int i = 0; i < n; i++) {
		int sel;
		vector<int> vec;
		for (int j = 0; j < m; j++) {
			cin >> sel;
			vec.push_back(sel);

			if (sel == 1)
			{
				q.push({ i,j });
			}
		}
		map.push_back(vec);
	}

	StartSearch();

	return 0;
}

 


첫 풀이 코드

Vector<pair<int, int>> 를 이용한 BFS 풀이였는데 메모리가 너무 높게 나와 위 풀이로 수정했다.

 

고친 풀이 (위), 처음 풀이 (아래)

#include <iostream>
#include <vector>
#include <queue>

// https://www.acmicpc.net/problem/7576

using namespace std;

int m, n;

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

vector<vector<int>> map;
vector<vector<bool>> visited;
queue <vector<pair<int, int>>> q;

int BFS()
{
	int count = 0;


	while (!q.empty()) {
		vector<pair<int, int>> searchVec; // 전이할 토마토 저장 벡터
		vector<pair<int, int>> saveVec; // 익은 토마토 저장 벡터

		searchVec = q.front();
		q.pop();

		for (int i = 0; i < searchVec.size(); i++) {
			for (int j = 0; j < 4; j++) {
				int moveX = searchVec[i].second + dx[j];
				int moveY = searchVec[i].first + dy[j];

				if (moveY < 0 || moveY >= n || moveX < 0 || moveX >= m)
					continue;

				if (!visited[moveY][moveX] && map[moveY][moveX] == 0) {
					visited[moveY][moveX] = true;
					map[moveY][moveX] = 1;
					saveVec.push_back({ moveY, moveX });
				}
			}
		}

		if (saveVec.size() > 0) { // 익은 토마토가 있다면 큐에 저장
			q.push(saveVec);
			count++;
		}


	}

	return count;
}
void StartSearch() {
	int totalCount = 0;


	totalCount = BFS();

	for (int i = 0; i < n; i++) {
		for (int j = 0; j < m; j++) {
			if (map[i][j] == 0) {
				cout << "-1\n";
				return;
			}
		}
	}

	cout << totalCount << "\n";
}
int main() {
	vector<pair<int, int>> initVec;

	cin >> m >> n;

	for (int i = 0; i < n; i++) {
		int sel;
		vector<int> vec;
		vector<bool> visit;
		for (int j = 0; j < m; j++) {
			cin >> sel;
			vec.push_back(sel);

			if (sel == 1)
			{
				initVec.push_back({ i,j });
				visit.push_back(true);
			}
			else {
				visit.push_back(false);
			}
		}
		map.push_back(vec);
		visited.push_back(visit);
	}

	q.push(initVec);
	StartSearch();

	return 0;
}