알고리즘/PS

[C++] 백준 14502 : 연구소

BigmacGood 2022. 4. 17. 22:23

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

 

14502번: 연구소

인체에 치명적인 바이러스를 연구하던 연구소에서 바이러스가 유출되었다. 다행히 바이러스는 아직 퍼지지 않았고, 바이러스의 확산을 막기 위해서 연구소에 벽을 세우려고 한다. 연구소는 크

www.acmicpc.net

백준 14502번 연구소 문제를 풀었다.

 

바이러스가 퍼지는 과정은 BFS 알고리즘을 사용했고 안전 영역을 구할 때는 전수 조사를 사용했다.

전수 조사 하는 과정에서 매번 초기화를 잘 해줘야 다음 시행에 영향이 없다.

 

아래는 전체 코드입니다.

#pragma warning(disable:4996)
#include <iostream>
#include <string>
#include <stdio.h>
#include <vector>
#include <queue>
#include <algorithm>
using namespace std;

#define INF 100000000

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

int lab[8][8];
int temp[8][8];

queue<pair<int, int>> q;
vector<pair<int, int>> q_temp;
vector<pair<int, int>> blank;
int n,m;

void BFS() {
	while (!q.empty()) {
		int x = q.front().first;
		int y = q.front().second;
		q.pop();
		for (int i = 0; i < 4; i++) {
			int next_x = x + dx[i];
			int next_y = y + dy[i];
			if (next_x >= 0 && next_x < n
				&& next_y >= 0 && next_y < m
				&& temp[next_x][next_y] == 0) {
				temp[next_x][next_y] = temp[x][y] + 1;
				q.push({ next_x,next_y });
			}
		}
	}
}

int main() {

	cin >> n >> m;

	for (int i = 0; i < n; i++) {
		for (int j = 0; j < m; j++) {
			cin >> lab[i][j];
			temp[i][j] = lab[i][j];
			if (lab[i][j] == 2) {
				q.push({ i,j });
				q_temp.push_back({ i,j });
			}
			if (lab[i][j] == 0)
				blank.push_back({ i,j });
		}
	}


	int max = 0;
	for (int i = 0; i < blank.size(); i++) {
		for (int j = 0; j < blank.size(); j++) {
			for (int k = 0; k < blank.size(); k++) {
				if (i == j || j == k || k == i)
					continue;
				if (i > j || j > k)
					continue;
				int a_x, a_y, b_x, b_y, c_x, c_y;
				a_x = blank[i].first;
				a_y = blank[i].second;
				b_x = blank[j].first;
				b_y = blank[j].second;
				c_x = blank[k].first;
				c_y = blank[k].second;

				temp[a_x][a_y] = 1;
				temp[b_x][b_y] = 1;
				temp[c_x][c_y] = 1;

				for (int v = 0; v < q_temp.size(); v++) {
					q.push({ q_temp[v].first,q_temp[v].second });
				}

				BFS();

				int cnt = 0;
				for (int a = 0; a < n; a++) {
					for (int b = 0; b < m; b++) {
						if (temp[a][b] == 0)
							cnt++;
						
						temp[a][b] = lab[a][b];
					}
				}

				if (max < cnt)
					max = cnt;
			}
		}
	}

	cout << max;

	return 0;
}

 

'알고리즘 > PS' 카테고리의 다른 글

[C++] 백준 13549 : 숨바꼭질 3  (0) 2022.04.19
[C++] 백준 12851 : 숨바꼭질 2  (0) 2022.04.18
[C++] 백준 1238 : 파티  (0) 2022.04.16
[C++] 백준 1613 : 역사  (0) 2022.04.16
[C++] 백준 1916 : 최소비용 구하기  (0) 2022.04.15