-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnearest-exit.cpp
39 lines (29 loc) · 1.08 KB
/
nearest-exit.cpp
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
class Solution {
public:
int nearestExit(vector<vector<char>>& maze, vector<int>& entrance) {
int rows = maze.size(), cols = maze[0].size();
queue<vector<int>> queue{{entrance}};
vector<int> directions = {-1, 0, 1, 0, -1};
maze[entrance[0]][entrance[1]] = '+'; //mark as visited
int steps = 0;
while (!queue.empty()) {
steps ++;
for (int count = queue.size(); count > 0; --count) {
auto pos = queue.front();
queue.pop();
for (int i = 0; i < 4; i++) {
int x = pos[0] + directions[i];
int y = pos[1] + directions[i + 1];
if (x >= 0 && x < rows && y >= 0 && y < cols && maze[x][y] == '.') {
if (x == 0 || x == rows-1 || y == 0 || y == cols-1) {
return steps;
}
queue.push({x,y});
maze[x][y] = '+';
}
}
}
}
return -1;
}
};