티스토리 뷰

알고리즘/BOJ

[백준] 2146 다리 만들기

세진짱 2018. 7. 4. 22:35


섬에서 가장 가까운 다리를 놓아 두 대륙을 연결 하려고 한다

그 때 가장 짧은 다리의 길이를 출력하라!


먼저 섬을 각자 다른 숫자로 만들어 준다(dfs)

그리고 만약 섬이 바다 옆에 있다면 bfs를 실행 시켜서 다른 섬을 가는 가장 짧은 거리를 반환한다!


그럼 반환된 값들 중 가장 작은 것이 답이 된다


소스코드

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
#include <iostream>
#include <algorithm>
#include <queue>
#include <cstring>
using namespace std;
int n, arr[111][111];
bool check[111][111];
int dx[4= { 0,0,-1,1 };
int dy[4= { 1,-1,0,0 };
void dfs(int x,int y,int c) {
    check[x][y] = true;
    arr[x][y] = c;
    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) {
            if (!check[nx][ny] && arr[nx][ny]==1) dfs(nx, ny, c);
        }
    }
}
bool go(int x, int y) {
    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) {
            if (arr[nx][ny] == 0return true;
        }
    }
    return false;
}
int bfs(int x, int y,int c) {
    memset(check, 0sizeof(check));
 
    queue<pair<intint>> q;
    q.push({ x,y });
    check[x][y] = true;
    int ret = 0;
    while (int s = q.size()) {
        while (s--) {
            int ax = q.front().first;
            int ay = q.front().second;
            q.pop();
 
            for (int i = 0; i < 4; i++) {
                int nx = ax + dx[i];
                int ny = ay + dy[i];
                if (0 <= nx && nx < n && 0 <= ny && ny < n) {
                    if (arr[nx][ny] != 0 && arr[nx][ny] != c) return ret;
                    if (arr[nx][ny] == 0 && !check[nx][ny]) {
                        check[nx][ny] = true;
                        q.push({ nx,ny });
                    }
                }
            }
        }
        ret++;
    }
}
int main() {
    scanf(" %d"&n);
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < n; j++) {
            scanf(" %d"&arr[i][j]);
        }
    }
    int color = 1;
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < n; j++) {
            if (arr[i][j]==1 && !check[i][j]) dfs(i, j, color++);
        }
    }
    int ans = 1e9;
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < n; j++) {
            if (arr[i][j] && go(i, j)) ans = min(ans, bfs(i, j,arr[i][j]));
        }
    }
    printf("%d\n", ans);
}
cs


'알고리즘 > BOJ' 카테고리의 다른 글

[백준] 9328 열쇠  (0) 2018.07.04
[백준] 5427 불  (0) 2018.07.04
[백준] 14595 동방 프로젝트(Large)  (0) 2018.07.04
[백준] 15352 욱제와 그의 팬들  (1) 2018.07.04
[백준] 4991 로봇 청소기  (0) 2018.07.04
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
TAG
more
«   2024/12   »
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
글 보관함