백준 2178번 : 미로 탐색 / C++

2023. 3. 15. 00:26개인공부/코딩테스트

2178번: 미로 탐색 (acmicpc.net)

 

2178번: 미로 탐색

첫째 줄에 두 정수 N, M(2 ≤ N, M ≤ 100)이 주어진다. 다음 N개의 줄에는 M개의 정수로 미로가 주어진다. 각각의 수들은 붙어서 입력으로 주어진다.

www.acmicpc.net

빨리 그래프 공부를 열심히해서 길찾기 알고리즘 A*를 구현하고 싶다.

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
 
#include <iostream>
#include <queue>
using namespace std;
 
int N, M; // N : row M: col
bool arr[100][100]{};
bool visit[100][100]{};
int ans = 0;
bool IsFind = false;
struct Pos
{
    int Row;
    int Col;
 
    Pos(int row, int col)
        :Row(row)
        ,Col(col)
    {}
};
 
queue<Pos> Q;
 
void BFS()
{
    ++ans;
    queue<Pos> tmp;
    while (!Q.empty())
    {
        Pos pos = Q.front();
        int col = pos.Col; int row = pos.Row;
        if (row == N - 1 && col == M - 1)
        {
            IsFind = true;
            return;
        }
        // up row-1
        if (row > 0 && arr[row - 1][col] == true && visit[row - 1][col] == false)
        {
            tmp.push(Pos(row - 1, col));
            visit[row - 1][col] = true;
        }
        // down row +1
        if (row + 1 < N && arr[row + 1][col] == true && visit[row + 1][col] == false)
        {
            tmp.push(Pos(row + 1, col));
            visit[row +1][col] = true;
        }
        // left col-1
        if (col > 0 && arr[row][col - 1== true && visit[row][col - 1== false)
        {
            tmp.push(Pos(row, col - 1));
            visit[row][col-1= true;
        }
        // right col+1
        if (col + 1 < M && arr[row][col + 1== true && visit[row][col + 1== false)
        {
            tmp.push(Pos(row, col + 1));
            visit[row][col+1= true;
        }
        Q.pop();
    }
    Q = tmp;
}
 
int main(void)
{
    cin.tie(NULL);
    cout.tie(NULL);
    ios::sync_with_stdio(false);
 
    cin >> N >> M; // row , col
 
    for (int i = 0; i < N; ++i)
    {
        string str;
        cin >> str;
        for (int j = 0; j < M; ++j)
        {
            if (str[j] == '1')
                arr[i][j] = 1;
            else
                arr[i][j] = 0;
        }
    }
    visit[0][0= true;
    Q.push(Pos(0,0));
    
    while (!IsFind)
    {
        BFS();
 
    }
    
    cout << ans;
 
}
cs