백준 14502번 : 연구소 / C++

2023. 3. 29. 10:00개인공부/코딩테스트

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

 

14502번: 연구소

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

www.acmicpc.net

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<intint>> 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*+ 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