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) |
Notes:
- 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.
Special thanks to @stellari for adding this problem and creating all test cases.
---
Solution: See http://leetcodesolution.blogspot.com/2015/01/leetcode-dungeon-game.html.
public class Solution {
public int calculateMinimumHP(int[][] dungeon) {
int len1 = dungeon.length;
int len2 = dungeon[0].length;
int[][] hp = new int[len1][len2];
for (int i = len1 - 1; i >= 0; i--) {
for (int j = len2 - 1; j >= 0; j--) {
if (i == len1 - 1 && j == len2 - 1) {
hp[i][j] = Math.max(1, 1 - dungeon[i][j]);
} else if (i + 1 == len1) {
hp[i][j] = Math.max(1, hp[i][j + 1] - dungeon[i][j]);
} else if (j + 1 == len2) {
hp[i][j] = Math.max(1, hp[i + 1][j] - dungeon[i][j]);
} else {
hp[i][j] = Math.max(1, Math.min(hp[i][j + 1], hp[i + 1][j]) - dungeon[i][j]);
}
}
}
return hp[0][0];
}
}
No comments:
Post a Comment