741 Cherry Pickup
741. Cherry Pickup
1. Question
In a N x Ngrid
representing a field of cherries, each cell is one of three possible integers.
0 means the cell is empty, so you can pass through;
1 means the cell contains a cherry, that you can pick up and pass through;
-1 means the cell contains a thorn that blocks your way.
Your task is to collect maximum number of cherries possible by following the rules below:
Starting at the position (0, 0) and reaching (N-1, N-1) by moving right or down through valid path cells (cells with value 0 or 1);
After reaching (N-1, N-1), returning to (0, 0) by moving left or up through valid path cells;
When passing through a path cell containing a cherry, you pick it up and the cell becomes an empty cell (0);
If there is no valid path between (0, 0) and (N-1, N-1), then no cherries can be collected.
Example 1:
Note:
grid
is anN
byN
2D array, with1 <= N <= 50
.
Eachgrid[i][j]
is an integer in the set{-1, 0, 1}
.
It is guaranteed that grid[0][0] and grid[N-1][N-1] are not -1.
2. Implementation
(1) 4D DP
3. Time & Space Complexity
Last updated