짱아의 개발 기록장

백준 2146번. 다리 만들기(c++) / BFS 본문

Algorithm/Baekjoon

백준 2146번. 다리 만들기(c++) / BFS

jungahshin 2021. 3. 30. 00:02
반응형

설명 추가 예정

 

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
#include <iostream>
#include <queue>
#include <vector>
#include <climits>
#include <tuple>
using namespace std;
 
int n;
int map[101][101= { 0, };
int dx[4= { 00-11 };
int dy[4= { -1100 };
int check[101][101= { 0, }; // 영역 표시하기
 
int connectArea(vector<pair<int ,int>> &v, int num)
{
    int visited[101][101= { 0, };
    queue<tuple<intintint>> q;
    for (int i = 0; i < v.size(); i++) {
        q.push(make_tuple(v[i].first, v[i].second, 1));
    }
    
    while (!q.empty()) {
        int x, y, cnt;
        tie(x, y, cnt) = q.front();
        q.pop();
        visited[x][y] = true;
 
        for (int i = 0; i < 4; i++) {
            int nx = x + dx[i];
            int ny = y + dy[i];
            if (0 <= nx && nx < n && 0 <= ny && ny < n && !visited[nx][ny] && check[nx][ny]!=num) {
                if (map[nx][ny] == 0) {
                    visited[nx][ny] = true;
                    q.push(make_tuple(nx, ny, cnt + 1));
                }
                else {
                    return cnt;
                }
            }
        }
    }
 
    return 0;
}
 
int makeBridge()
{
    int num = 0;
    int ans = INT_MAX;
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < n; j++) {
            if (map[i][j]==0continue;
            if (check[i][j] != 0continue;
            int visited[101][101= { 0, };
            num++;
            queue<pair<intint>> q;
            vector<pair<intint>> edge;
            q.push(make_pair(i, j));
 
            while (!q.empty()) {
                int x = q.front().first;
                int y = q.front().second;
                q.pop();
                visited[x][y] = true;
                check[x][y] = num;
 
                for (int k = 0; k < 4; k++) {
                    int nx = x + dx[k];
                    int ny = y + dy[k];
                    if (0 <= nx && nx < n && 0 <= ny && ny < n && !visited[nx][ny]) {
                        visited[nx][ny] = true;
                        if (map[nx][ny] == 0) {
                            edge.push_back(make_pair(nx, ny));
                        }
                        if (map[nx][ny] == 1) {
                            q.push(make_pair(nx, ny));
                        }
                    }
                }
            }
            
            ans = min(ans, connectArea(edge, num));
        }
    }
 
    return ans;
}
 
int main()
{
    cin >> n;
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < n; j++) {
            cin >> map[i][j];
        }
    }
 
    cout<<makeBridge()<<"\n";
    return 0;
}
cs
반응형
Comments