-
-
Notifications
You must be signed in to change notification settings - Fork 8.9k
/
Copy pathSolution.cpp
64 lines (61 loc) · 1.7 KB
/
Solution.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
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
/**
* // This is the GridMaster's API interface.
* // You should not implement it, or speculate about its implementation
* class GridMaster {
* public:
* bool canMove(char direction);
* void move(char direction);
* boolean isTarget();
* };
*/
class Solution {
private:
const int n = 2010;
int dirs[5] = {-1, 0, 1, 0, -1};
string s = "URDL";
int target;
unordered_set<int> vis;
public:
int findShortestPath(GridMaster& master) {
target = n * n;
vis.insert(0);
dfs(0, 0, master);
if (target == n * n) {
return -1;
}
vis.erase(0);
queue<pair<int, int>> q;
q.emplace(0, 0);
for (int ans = 0; q.size(); ++ans) {
for (int m = q.size(); m; --m) {
auto [i, j] = q.front();
q.pop();
if (i * n + j == target) {
return ans;
}
for (int k = 0; k < 4; ++k) {
int x = i + dirs[k], y = j + dirs[k + 1];
if (vis.count(x * n + y)) {
vis.erase(x * n + y);
q.emplace(x, y);
}
}
}
}
return -1;
}
void dfs(int i, int j, GridMaster& master) {
if (master.isTarget()) {
target = i * n + j;
}
for (int k = 0; k < 4; ++k) {
int x = i + dirs[k], y = j + dirs[k + 1];
if (master.canMove(s[k]) && !vis.count(x * n + y)) {
vis.insert(x * n + y);
master.move(s[k]);
dfs(x, y, master);
master.move(s[(k + 2) % 4]);
}
}
}
};