반응형

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
88
89
90
91
#include <iostream>
#include <cstring>
#include <algorithm>
#include <queue>
#define pii pair<intint>
#define rep(i,n) for(int i=0;i<n;i++)
using namespace std;
int n, m;
int arr[9][9];
int dx[4= { 10-10 };
int dy[4= { 010-1 };
int temp[9][9];
int ans = -1;
int chk_zero() {
    int ret = 0;
    rep(i, n) {
        rep(j, m) {
            if (temp[i][j] == 0)
                ret++;
        }
    }
    return ret;
}
bool visited[9][9];
void bfs() {
    queue<pii> q;
    // 1) 원본 배열 복사 (원본 배열로 하면 다음 bfs 실행 못함)
    rep(i, n) {        
        rep(j, m)    
            temp[i][j] = arr[i][j];
    }
    
    // 2) 모든 칸 탐색 (2 이고 방문 안했으면 q에 추가)
    rep(i, n) {        
        rep(j, m) {    
            if (temp[i][j] == 2 && !visited[i][j]) {
                q.push({ i,j });
                visited[i][j] = 1;
            }
        }
    }
 
    // 3) q에서 꺼내서 처리
    while (!q.empty()) {
        pii now = q.front();
        q.pop();
        int x = now.first;
        int y = now.second;
        rep(i, 4) {
            int nx = x + dx[i];
            int ny = y + dy[i];
            if (nx >= 0 && nx < n && ny >= 0 && ny < m) {
                if (temp[nx][ny] == 0 && !visited[nx][ny]) {
                    temp[nx][ny] = 2;
                    visited[nx][ny] = 1;
                    q.push({ nx, ny });
                }
            }
        }
    }
}
 
void dfs(int x, int y, int cnt) {
    if (cnt == 3) {
        memset(visited, 0sizeof(visited));
        bfs();                        // 2. bfs로 2 퍼뜨리기
        ans = max(ans, chk_zero());    // 3. 0 개수 확인
        return;
    }
    
    for(int i = x; i<n; i++){        // 1. 벽 세우기(백트래킹)
        for(int j = 0; j<m; j++) {
            if (arr[i][j] == 0) {
                arr[i][j] = 1;    
                dfs(i, j, cnt + 1);
                arr[i][j] = 0;
            }
        }
    }
}
int main() {
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cin >> n >> m;
    rep(i, n) {
        rep(j, m)
            cin >> arr[i][j];
    }
    dfs(000);
    cout << ans;
}
cs
반응형

'백준 > 삼성기출' 카테고리의 다른 글

백준 14500  (0) 2021.02.13
백준 15686  (0) 2021.02.05
백준 15684  (0) 2021.02.03
백준 14889  (0) 2021.01.29
백준 14888  (0) 2021.01.28

+ Recent posts