-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path980_UniquePathIII.cpp
85 lines (70 loc) · 1.27 KB
/
980_UniquePathIII.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#include<string>
#include <set>
#include<iostream>
#include<map>
#include<unordered_map>
#include<algorithm>
#include<stack>
#include<unordered_set>
#include <iterator>
#include<vector>
using namespace std;
int count89 = 0;
bool dfs(vector<vector<int>>& grid, int i, int j, int row, int col)
{
if (i > row || j > col) return false;
if (grid[i][j] == -1)
return false;
if (grid[i][j] == 2)
{
count89++;
return true;
}
if (grid[i][j] == 0)
{
grid[i][j] = 3; //visited
if (i + 1 < row)
dfs(grid, i + 1, j, row, col);
if (i - 1 >= 0)
dfs(grid, i - 1, j, row, col);
if (j + 1 < col)
dfs(grid, i, j + 1, row, col);
if (j - 1 >= 0)
dfs(grid, i, j - 1, row, col);
}
return true;
}
int uniquePathsIII(vector<vector<int>>& grid)
{
if (!grid.size())
return -1;
int row = grid.size();
int col = grid[0].size();
int newR = 0;
int newCol = 0;
bool found = false;
for (int i = 0; i < row; ++i)
{
for (int j = 0; j < col; ++j)
{
if (grid[i][j] == 1)
{
newR = i;
newCol = j;
found = true;
break;
}
}
if (found)
break;
}
grid[newR][newCol] = 0;
dfs(grid, newR, newCol, row, col);
return count89;
}
int main980()
{
vector<vector<int>> vec = { {1,0,0,0} ,{0,0,0,0},{0,0,0,2} };
uniquePathsIII(vec);
return 0;
}