Thursday, May 30, 2019

LeetCode [741] Cherry Pickup

741. Cherry Pickup
Hard

In a N x N grid 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:

Input: grid =
[[0, 1, -1],
 [1, 0, -1],
 [1, 1,  1]]
Output: 5
Explanation: 
The player started at (0, 0) and went down, down, right right to reach (2, 2).
4 cherries were picked up during this single trip, and the matrix becomes [[0,1,-1],[0,0,-1],[0,0,0]].
Then, the player went left, up, up, left to return home, picking up one more cherry.
The total number of cherries picked up is 5, and this is the maximum possible.

 

Note:

  • grid is an N by N 2D array, with 1 <= N <= 50.
  • Each grid[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.
Explanations:
 Two person move from [0,0] to [n-1, n-1]. What's the max cherries they can pick.
- if the two person pass the same cell, they much pass it at the same time
- the length from [0,0] to position [i, j] is i+j;
- the length from [0,0] to [n-1, n-1] is 2n-2. this is also the max length;
- given a length K, dp[i][j] is the cherries picked up on the route [0,0]->[i,K-i] and [j, K-j]->[0,0]
- when K = 2n-2 the result is dp[n-1][n-1]. in this case, [i, K-i] = [n-1, n-1] = [j, K-j]. 
- dp_k[i][j] = max{dp_(k-1)[i-1][j-1], dp_(k-1)[i][j-1], dp_(k-1)[i-1][j], dp_(k-1)[i][j]} + grid[i][k-i] + grid[j][k-j]


 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
class Solution {
public:
    int cherryPickup(vector<vector<int>>& grid) {
        int n = grid.size();
        int K = 2*n-2;
        vector<vector<int>> dp(n, vector<int>(n, -1));
        dp[0][0] = grid[0][0]; // length k = 0
        for(int k=1; k<=K; ++k)
        {
            vector<vector<int>> tmp(n, vector<int>(n, -1));
            for(int i=0; i<=k && i<n; ++i)
            {
                if(k-i>=n) continue;
                if(grid[i][k-i]<0) continue;
                for(int j=0; j<=k && j<n; ++j)
                {
                    if(k-j>=n) continue;
                    if(grid[j][k-j]<0) continue;
                    int cherries = dp[i][j];//cherries picked up at k-1th iteration
                    if(i-1>=0) cherries = max(cherries, dp[i-1][j]);
                    if(j-1>=0) cherries = max(cherries, dp[i][j-1]);
                    if(i-1>=0 && j-1>=0) cherries = max(cherries, dp[i-1][j-1]);
                    
                    if(cherries<0) continue;//no way to current place
                    
                    tmp[i][j] = cherries + grid[i][k - i] + (i == j ? 0 : grid[j][k - j]);
                }
            }
            dp = tmp;
        }
        
        return max(dp[n-1][n-1], 0);
    }
};
 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
//Java
class Solution {
    public int cherryPickup(int[][] grid) {
        int N = grid.length;
        int[][] dp = new int[N][N];
        for(int i=0; i<N; ++i) Arrays.fill(dp[i], -1);
        int K = 2*N-2;
        dp[0][0] = grid[0][0];
        for(int k=1; k<=K; ++k){
            int[][] tmp = new int[N][N];
            for(int i=0; i<N; ++i) Arrays.fill(tmp[i], -1);
            for(int i=0; i<N && i<=k; ++i){//person A's position
                int coli = k-i;
                if(coli>=N || grid[i][coli]<0) continue;
                for(int j=0; j<N && j<=k; ++j){//person B's position
                    int colj = k-j;
                    if(colj>=N || grid[j][colj]<0) continue;
                    int cherries = dp[i][j];//cherries picked up at (k-1)th iteration
                    if(i-1>=0) cherries = Math.max(cherries, dp[i-1][j]);
                    if(j-1>=0) cherries = Math.max(cherries, dp[i][j-1]);
                    if(i-1>=0 && j-1>=0) cherries = Math.max(cherries, dp[i-1][j-1]);
                    if(cherries<0) continue;
                    tmp[i][j] = cherries + grid[i][k-i] + (i==j?0:grid[j][k-j]);
                }
            }
            dp = tmp;
        }
        return Math.max(dp[N-1][N-1], 0);
    }
}

No comments:

Post a Comment