Leetcode_174_Dungeon Game
Opened this issue · 0 comments
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.
算法思路:
- 用动态规划来进行推导,
dp[i][j]
代表至少要有多少血生命才能到达[i,j]
还活着. - 从右下往左上推导设
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];
}
};