Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Leetcode_174_Dungeon Game #21

Open
lihe opened this issue Nov 12, 2019 · 0 comments
Open

Leetcode_174_Dungeon Game #21

lihe opened this issue Nov 12, 2019 · 0 comments
Labels

Comments

@lihe
Copy link
Owner

lihe commented Nov 12, 2019

Dungeon Game

The demons had captured the princess (P) and imprisoned her in the bottom-right corner of a dungeon. The dungeon consists of M x N rooms laid out in a 2D grid. Our valiant knight (K) was initially positioned in the top-left room and must fight his way through the dungeon to rescue the princess.

The knight has an initial health point represented by a positive integer. If at any point his health point drops to 0 or below, he dies immediately.

Some of the rooms are guarded by demons, so the knight loses health (negative integers) upon entering these rooms; other rooms are either empty (0's) or contain magic orbs that increase the knight's health (positive integers).

In order to reach the princess as quickly as possible, the knight decides to move only rightward or downward in each step.

Write a function to determine the knight's minimum initial health so that he is able to rescue the princess.

For example, given the dungeon below, the initial health of the knight must be at least 7 if he follows the optimal path RIGHT-> RIGHT -> DOWN -> DOWN.

-2 (K) -3 3
-5 -10 1
10 30 -5 (P)

Note:

  • The knight's health has no upper bound.
  • Any room can contain threats or power-ups, even the first room the knight enters and the bottom-right room where the princess is imprisoned.

算法思路:

  1. 用动态规划来进行推导,dp[i][j]代表至少要有多少血生命才能到达[i,j]还活着.
  2. 从右下往左上推导设dp_min = min(dp[i-1][j], dp[i][j-1])dp[i][j] = max(1, dp_min - dungeon[i][j])
class Solution{
public:
    int calculateMinimumHP(std::vector<std::vector<int>> &dungeon){
        if(dungeon.size() == 0){
            return 0;
        }

        std::vector<std::vector<int>> dp(dungeon.size(), std::vector<int>(dungeon[0].size(), 0));
        int row = dungeon.size();
        int column = dungeon[0].size();
        dp[row - 1][column - 1] = std::max(1, 1 - dungeon[row - 1][column - 1]);
        for(int i = column - 2; i >= 0; i--){
            dp[row - 1][i] = std::max(1, dp[row - 1][i + 1] - dungeon[row - 1][i]);
        }
        for(int i = row - 2; i >= 0; i--){
            dp[i][column - 1] = std::max(1, dp[i + 1][column - 1] - dungeon[i][column - 1]);
        }
        for(int i = row - 2; i >= 0; i--){
            for(int j = column - 2; j >= 0; j--){
                int dp_min = std::min(dp[i + 1][j], dp[i][j + 1]);
                dp[i][j] = std::max(1, dp_min - dungeon[i][j]);
            }
        }
        return dp[0][0];
    }
};
@lihe lihe added the Leetcode label Nov 12, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant