ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • 13565번 침투 | BFS, DFS | 백준 13565 C++ 코드
    [백준 알고리즘]/[C++] 2021. 2. 28. 14:50
    728x90
    반응형

     

     

    이번 포스팅은 백준 13565번 침투입니다.

    아래 url를 클릭하시면 백준 사이트에서 문제를 볼 수 있습니다.

    www.acmicpc.net/problem/13565

     

    13565번: 침투

    첫째 줄에는 격자의 크기를 나타내는  M (2 ≤ M ≤ 1,000) 과 N (2 ≤ N ≤ 1,000) 이 주어진다. M줄에 걸쳐서, N개의 0 또는 1 이 공백 없이 주어진다. 0은 전류가 잘 통하는 흰색, 1은 전류가 통하지 않

    www.acmicpc.net

     

     

    기본 알고리즘

    BFS 너비 우선 탐색

    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
    //백준13565 침투                                                            
     
    #define _CRT_SECURE_NO_WARNINGS
    #include <iostream>
    #include <queue>
    using namespace std;
     
    int N, M;
    const int MAX = 1001;
    int map[MAX][MAX];
    bool visited[MAX][MAX];
    int dy[] = { 0,0,-1,1 };
    int dx[] = { -1,1,0,0 };
    queue<pair<intint>> q;
     
    void BFS(int y, int x) {
        visited[y][x] = true;
        q.push(make_pair(y, x));
     
        while (!q.empty()) {
            y = q.front().first;
            x = q.front().second;
            q.pop();
     
            for (int i = 0; i < 4; i++) {
                int ny = y + dy[i];
                int nx = x + dx[i];
     
                if (ny < 0 || nx < 0 || ny >= M || nx >= N)
                    continue;
                if (map[ny][nx] == 0 && !visited[ny][nx]) {
                    visited[ny][nx] = true;
                    q.push(make_pair(ny, nx));
                }
            }
        
        }
    }
     
    int main() {
        cin >> M >> N;
        for (int i = 0; i < M; i++) {
            for (int j = 0; j < N; j++) {
                scanf("%1d"&map[i][j]);
            }
        }
     
        for (int j = 0; j < N; j++) {
            if (map[0][j] == 0 && !visited[0][j]) {
                BFS(0, j);
            }
        }
     
        bool flag = false;
        for (int j = 0; j < N; j++) {
            if (visited[M - 1][j]) {
                flag = true;
            }
        }
     
        if (flag == true)
            cout << "YES";
        else
            cout << "NO";
    }
    cs

     

     

    DFS 깊이 우선 탐색

     

    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
    //백준13565 침투                                                            
     
    #define _CRT_SECURE_NO_WARNINGS
    #include <iostream>
    using namespace std;
     
    int N, M;
    const int MAX = 1001;
    int map[MAX][MAX];
    bool visited[MAX][MAX];
    int dy[] = { 0,0,-1,1 };
    int dx[] = { -1,1,0,0 };
     
    void DFS(int  y, int x) {
        visited[y][x] = true;
     
        for (int i = 0; i < 4; i++) {
            int ny = y + dy[i];
            int nx = x + dx[i];
     
            if (ny < 0 || nx < 0 || ny >= M || nx >= N)
                continue;
            if (map[ny][nx]==0 && !visited[ny][nx]) {
                visited[ny][nx] = true;
                DFS(ny, nx);
            }
        }
    }
     
    int main() {
        cin >> M >> N;
        for (int i = 0; i < M; i++) {
            for (int j = 0; j < N; j++) {
                scanf("%1d"&map[i][j]);
            }
        }
     
        for (int j = 0; j < N; j++) {
            if (map[0][j]==0 && !visited[0][j]) {
                DFS(0, j);
            }
        }
     
        bool flag = false;
        for (int j = 0; j < N; j++) {
            if (visited[M-1][j]) {
                flag = true;
            }
        }
     
        if (flag == true)
            cout << "YES";
        else
            cout << "NO";
    }
    cs

     

     

     

     

     

    728x90
    반응형

    댓글

S.B. All Rights Reserved.