백준 2178번 : 미로 탐색 / C++
2023. 3. 15. 00:26ㆍ개인공부/코딩테스트
빨리 그래프 공부를 열심히해서 길찾기 알고리즘 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 |
'개인공부 > 코딩테스트' 카테고리의 다른 글
백준 2206번 : 벽 부수고 이동하기 / C++ (0) | 2023.03.16 |
---|---|
백준 7575번 : 토마토 / C++ (0) | 2023.03.15 |
백준 1260번 : DFS와 BFS / C++ (0) | 2023.03.14 |
백준 24479번: 알고리즘 수업-깊이 우선 탐색1 / C++ (0) | 2023.03.14 |
백준 17299번 : 오등큰수 / C++ (0) | 2023.03.14 |