> For the complete documentation index, see [llms.txt](https://wentao-shao.gitbook.io/leetcode/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wentao-shao.gitbook.io/leetcode/graph-search/1219.path-with-maximum-gold.md).

# 1219.Path-with-Maximum-Gold

## 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.
```

## 代码

### Approach #1  DFS Backtracking

Time: O(k *4 ^ k + m* n), space: O(m \* n), where k = number of gold cells, m = grid.length, n = grid\[0].length.

```java
class Solution {
  public int getMaximumGold(int[][] grid) {
        int m = grid.length;
    int n = grid[0].length;
    int maxGold = 0;
    for (int r = 0; r < m; r++) {
      for (int c = 0; c < n; c++) {
        maxGold = Math.max(maxGold, findMaxGold(grid, m, n, r, c));
      }
    }
    return maxGold;
  }

  int[] DIR = new int[]{0, 1, 0, -1, 0};

  int findMaxGold(int[][] grid, int m, int n, int r, int c) {
    if (r < 0 || r == m || c < 0 || c == n || grid[r][c] == 0)    return 0;
    int origin = grid[r][c];
    grid[r][c] = 0;
    int maxGold = 0;
    for (int i = 0; i < 4; i++)
      maxGold = Math.max(maxGold, findMaxGold(grid, m, n, DIR[i] + r, DIR[i+1] + c));
    grid[r][c] = origin;
    return maxGold + origin;
  }
}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://wentao-shao.gitbook.io/leetcode/graph-search/1219.path-with-maximum-gold.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
