백준 14502번 : 연구소 / C++
2023. 3. 29. 10:00ㆍ개인공부/코딩테스트
https://www.acmicpc.net/problem/14502
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
#include <iostream>
#include <queue>
using namespace std;
int N, M; // row , col
char arr[8][8]{};
int ans = 0;
void BFS()
{
queue<pair<int, int>> Q;
bool visited[8][8]{};
for(int row=0; row<N; ++row)
for (int col = 0; col < M; ++col) {
if (!visited[row][col] && arr[row][col] == '2') {
Q.push(make_pair(row, col));
visited[row][col] = true;
while (!Q.empty()) {
int Row = Q.front().first;
int Col = Q.front().second;
// up row-1
if (Row > 0 && !visited[Row - 1][Col] && arr[Row - 1][Col] == '0') {
visited[Row - 1][Col] = true;
Q.push(make_pair(Row - 1, Col));
}
// down row+1
if (Row + 1 < N && !visited[Row + 1][Col] && arr[Row + 1][Col] == '0') {
visited[Row + 1][Col] = true;
Q.push(make_pair(Row + 1, Col));
}
// left col-1
if (Col > 0 && !visited[Row][Col - 1] && arr[Row][Col - 1] == '0') {
visited[Row][Col - 1] = true;
Q.push(make_pair(Row, Col - 1));
}
// right col+1
if (Col + 1 < M && !visited[Row][Col + 1] && arr[Row][Col + 1] == '0') {
visited[Row][Col + 1] = true;
Q.push(make_pair(Row, Col + 1));
}
Q.pop();
}
}
}
int safe = 0;
for (int row = 0; row < N; ++row)
for (int col = 0; col < M; ++col) {
if (!visited[row][col] && arr[row][col] == '0')
++safe;
}
if (ans < safe)
ans = safe;
}
void DFS(int num, int index)
{
if (num == 3) {
BFS();
return;
}
for(int row= 0; row<N; ++row)
for (int col = 0; col < M; ++col) {
if (index <= row*M + col && arr[row][col] == '0') {
arr[row][col] = '1';
DFS(num + 1,row*M+col);
arr[row][col] = '0';
}
}
}
int main()
{
cin.tie(NULL);
cout.tie(NULL);
ios::sync_with_stdio(false);
cin >> N >> M;
for (int row = 0; row < N; ++row)
for (int col = 0; col < M; ++col)
cin >> arr[row][col];
DFS(0,0);
cout << ans;
}
|
cs |
'개인공부 > 코딩테스트' 카테고리의 다른 글
백준 16236번 : 아기 상어 /C++ (0) | 2023.03.30 |
---|---|
백준 3197번: 백조의 호수 / C++ (0) | 2023.03.29 |
백준 5052번: 전화번호 목록 / C++ (0) | 2023.03.28 |
백준 11725번 : 트리의 부모 찾기 / C++ (0) | 2023.03.27 |
백준 4779번 : 칸토어 집합 / C++ (0) | 2023.03.27 |