forked from wisdompeak/LeetCode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path351.Android-Unlock-Patterns.cpp
53 lines (50 loc) · 1.43 KB
/
351.Android-Unlock-Patterns.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
class Solution {
int count = 0;
int m,n;
int visited[3][3];
vector<pair<int,int>>dir = {{1,0},{-1,0},{0,1},{0,-1},{1,1},{-1,1},{1,-1},{-1,-1},{-1,2},{1,2},{-2,1},{2,1},{-1,-2},{1,-2},{-2,-1},{2,-1}};
public:
int numberOfPatterns(int m, int n)
{
this->m = m;
this->n = n;
for (int i=0; i<3; i++)
for (int j=0; j<3; j++)
{
visited[i][j] = 1;
dfs(i,j,1);
visited[i][j] = 0;
}
return count;
}
void dfs(int x, int y, int r)
{
if (r>=m && r<=n)
count++;
if (r>n) return;
for (int k=0; k< dir.size(); k++)
{
int i = x+dir[k].first;
int j = y+dir[k].second;
if (i<0||i>=3||j<0||j>=3)
continue;
if (visited[i][j] == 0)
{
visited[i][j] = 1;
dfs(i,j,r+1);
visited[i][j] = 0;
}
else
{
i = i+dir[k].first;
j = j+dir[k].second;
if (i<0||i>=3||j<0||j>=3)
continue;
if (visited[i][j]==1) continue;
visited[i][j] = 1;
dfs(i,j,r+1);
visited[i][j] = 0;
}
}
}
};