leetcode 675 Cut Off Trees for Golf Event

You are asked to cut off trees in a forest for a golf event. The forest is represented as a non-negative 2D map, in this map:

0 represents the obstacle can’t be reached.
1 represents the ground can be walked through.
The place with number bigger than 1 represents a tree can be walked through, and this positive number represents the tree’s height.
You are asked to cut off all the trees in this forest in the order of tree’s height - always cut off the tree with lowest height first. And after cutting, the original place has the tree will become a grass (value 1).

You will start from the point (0, 0) and you should output the minimum steps you need to walk to cut off all the trees. If you can’t cut off all the trees, output -1 in that situation.

You are guaranteed that no two trees have the same height and there is at least one tree needs to be cut off.

Example 1:
Input:

[

[1,2,3],

[0,0,4],

[7,6,5]

]

Output: 6

Example 2:

Input:

[

[1,2,3],

[0,0,0],

[7,6,5]

]

Output: -1

Example 3:

Input:

[

[2,3,4],

[0,0,5],

[8,7,6]

]

Output: 6

Explanation: You started from the point (0,0) and you can cut off the tree in (0,0) directly without walking.

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
struct node {
int h, x, y;
node( int hh, int xx, int yy ) : h( hh ), x( xx ), y( yy )
{
}
bool operator < (node p) const {
return(h < p.h);
}
};




int dir[4][2] = { { -1, 0 }, { 1, 0 }, { 0, 1 }, { 0, -1 } };
class Solution {

public:

int m, n;
int cutOffTree( vector<vector<int> > & forest )
{
m = forest.size();
n = forest[0].size();
vector<node> v;
for ( int i = 0; i < m; i++ )
{
for ( int j = 0; j < n; j++ )
{
if ( forest[i][j] > 1 )
v.push_back( node( forest[i][j], i, j ) );
}
}
sort( v.begin(), v.end() );

int totalstep = 0;
int sr = 0, sc = 0;
int destx, desty;
for ( int i = 0; i < v.size(); i++ )
{

destx = v[i].x;
desty = v[i].y;
int step = bfs( forest, sr, sc, destx, desty );
if ( step == -1 )
return -1;

sr = v[i].x;
sc = v[i].y;
totalstep += step;
}

return(totalstep);
}


int bfs( vector<vector<int> > & forest, int sr, int sc, int destx, int desty )
{
vector<vector<int> > vis(m,vector<int>(n,0));
int step = 0;

queue<pair<int, int> > q;
q.push( pair<int, int>{ sr, sc } );
while ( !q.empty() )
{
int size = q.size();
while ( size-- )//size:一步可到达的节点个数
{
pair<int, int> index = q.front();
q.pop();
int x = index.first;
int y = index.second;
if (x == destx && y == desty )//!!
return(step);

vis[x][y]=true;

for ( int j = 0; j < 4; j++ )
{

int newx = x + dir[j][0];
int newy = y + dir[j][1];

if ( newx >= 0 &&
newx < m && newy >= 0 && newy < n&&!vis[newx][newy]&&forest[newx][newy] )

{
q.push( pair<int, int>{ newx, newy } );
vis[newx][newy] = true;
}
}
}
step++;
}
return(-1);
}
};