zoukankan      html  css  js  c++  java
  • LeetCode 1219. Path with Maximum Gold

    原题链接在这里:https://leetcode.com/problems/path-with-maximum-gold/

    题目:

    In a gold mine grid of size m * n, each cell in this mine has an integer representing the amount of gold in that cell, 0 if it is empty.

    Return the maximum amount of gold you can collect under the conditions:

    • Every time you are located in a cell you will collect all the gold in that cell.
    • From your position you can walk one step to the left, right, up or down.
    • You can't visit the same cell more than once.
    • Never visit a cell with 0 gold.
    • You can start and stop collecting gold from any position in the grid that has some gold.

    Example 1:

    Input: grid = [[0,6,0],[5,8,7],[0,9,0]]
    Output: 24
    Explanation:
    [[0,6,0],
     [5,8,7],
     [0,9,0]]
    Path to get the maximum gold, 9 -> 8 -> 7.
    

    Example 2:

    Input: grid = [[1,0,7],[2,0,6],[3,4,5],[0,3,0],[9,0,20]]
    Output: 28
    Explanation:
    [[1,0,7],
     [2,0,6],
     [3,4,5],
     [0,3,0],
     [9,0,20]]
    Path to get the maximum gold, 1 -> 2 -> 3 -> 4 -> 5 -> 6 -> 7.

    Constraints:

    • 1 <= grid.length, grid[i].length <= 15
    • 0 <= grid[i][j] <= 100
    • There are at most 25 cells containing gold.

    题解:

    For each cell in the grid, start DFS.

    DFS state is current index. And it should return starting at current index, the maximum glod it could get.

    If current index is illegal, return 0.

    Otherwise, return grid[i][j] + for each direction, do DFS, get the maximum among 4 directions, and return.

    Before return, backtracking grid[i][j] to its original value.

    Time Complexity:  O(m^2*n^2).

    Space: O(m*n). m = grid.length. n = grid[0].length.

    AC Java:

     1 class Solution {
     2     int res = 0;
     3     int [][] dirs = new int[][]{{0, 1}, {1, 0}, {0, -1}, {-1, 0}};
     4     
     5     public int getMaximumGold(int[][] grid) {
     6         int m = grid.length;
     7         int n = grid[0].length;
     8         
     9         for(int i = 0; i < m; i++){
    10             for(int j = 0; j < n; j++){
    11                 if(grid[i][j] != 0){
    12                     res = Math.max(res, dfs(grid, i, j, m, n));
    13                 }
    14             }
    15         }
    16         
    17         return res;
    18     }
    19     
    20     private int dfs(int [][] grid, int i, int j, int m, int n){
    21         if(i < 0 || i >= m || j < 0 || j >= n || grid[i][j] == 0){
    22             return 0;
    23         }
    24         
    25         int gold = grid[i][j];
    26         grid[i][j] = 0;
    27         int max = 0;
    28         for(int [] dir : dirs){
    29             max = Math.max(max, dfs(grid, i + dir[0], j + dir[1], m, n));
    30         }
    31         
    32         grid[i][j] = gold;
    33         return gold + max;
    34     }
    35 }
  • 相关阅读:
    [kuangbin带你飞]专题二十一 概率&期望
    [kuangbin带你飞]专题二十 斜率DP
    POJ——3984迷宫问题(BFS+回溯)
    POJ——2251Dungeon Master(三维BFS)
    HDU——2647Reward(DFS或差分约束)
    HDU——4549M斐波那契数列(矩阵快速幂+快速幂+费马小定理)
    PAT天梯赛练习题——L3-008. 喊山(邻接表+BFS)
    Opencv学习笔记——视频高斯模糊并分别输出
    Opencv学习笔记——视频进度条的随动
    NYOJ——239月老的难题(二分图最大匹配)
  • 原文地址:https://www.cnblogs.com/Dylan-Java-NYC/p/11791324.html
Copyright © 2011-2022 走看看