알고리즘/백준

[백준 17142] 연구소 3 C++

겜도리도리 2021. 12. 6. 21:22
반응형

문제

백준 17142 연구소 3 C++

 

17142번: 연구소 3

인체에 치명적인 바이러스를 연구하던 연구소에 승원이가 침입했고, 바이러스를 유출하려고 한다. 바이러스는 활성 상태와 비활성 상태가 있다. 가장 처음에 모든 바이러스는 비활성 상태이고

www.acmicpc.net

풀이

빡구현류의 브루트 포스 + BFS + 시뮬레이션 문제입니다.

1. 바이러스를 M개 만큼 선택한다. (조합 이용)

2. 바이러스를 확산하고 최소 시간을 갱신한다.

소스 코드

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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
#include <iostream>
#include <vector>
#include <algorithm>
#include <cstring>
#include <queue>
using namespace std;
 
struct virus
{
    int x;
    int y;
    int time = 0;
};
int N, M;
int origin_map[50][50];
int dx[] = { 00-11 };
int dy[] = { -1 ,100 };
int map[50][50];
int zeroPlace;
int mintime = -1;
bool Vselect[10];
bool visited[50][50];
vector<virus> v;
 
// 맵 복사
void copymap() {
    for (int i = 0; i < N; i++) {
        for (int j = 0; j < N; j++) {
            map[i][j] = origin_map[i][j];
        }
    }
}
int bfs() {
    queue<virus> q;
    // 선택받지 않은 바이러스는 map에서 3으로 변경, 선택받은 바이러스는 queue에 넣어주기
    for (int i = 0; i < v.size(); i++) {
        if (!Vselect[i]) {
            map[v[i].y][v[i].x] = 3;
        }
        else {
            q.push({ v[i].x, v[i].y });
            visited[v[i].y][v[i].x] = true;
        }
    }
    int time = 0;
    // 0인 공간 중 아직 바이러스가 확산되지 않는 곳
    int remainingPlace = zeroPlace;
    while (!q.empty()) {
        int x = q.front().x;
        int y = q.front().y;
        int t = q.front().time;
        if (remainingPlace <= 0)
            return time;
        q.pop();
        for (int i = 0; i < 4; i++) {
            int nx = x + dx[i];
            int ny = y + dy[i];
            if (nx >= 0 && ny >= 0 && nx < N && ny < N) {
                if (!visited[ny][nx] && map[ny][nx] != 1) {
                    if (map[ny][nx] == 0)
                        remainingPlace--;
                    map[ny][nx] = 2;
                    visited[ny][nx] = true;
                    q.push({ nx, ny, t + 1 });
                    time = max(time, t + 1);
                }
            }
        }
    }
    return -1;
}
// 바이러스 확산
void SpreadVirus() {
    // map 초기화, 방문 초기화
    copymap();
    memset(visited, 0sizeof(visited));
    // bfs
    int time = bfs();
    // 최소갱신
    if (time != -1) {
        if (mintime == -1) {
            mintime = time;
        }
        else {
            mintime = min(mintime, time);
        }
    }
}
 
// 바이러스 선택
void SelectVirus(int cnt, int idx) {
    // M개 만큼 고르면 확산
    if (cnt == M) {
        SpreadVirus();
        return;
    }
    for (int i = idx; i < v.size(); i++) {
        Vselect[i] = true;
        SelectVirus(cnt + 1, i + 1);
        Vselect[i] = false;
    }
}
 
int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(0);
    // 입력
    cin >> N >> M;
    for (int i = 0; i < N; i++) {
        for (int j = 0; j < N; j++) {
            cin >> origin_map[i][j];
            if (origin_map[i][j] == 2) {
                v.push_back({ j, i });
            }
            else if (origin_map[i][j] == 0) {
                zeroPlace++;
            }
        }
    }
    SelectVirus(00);
    cout << mintime;
    return 0;
}
cs
반응형