-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDungeon Game.java
27 lines (23 loc) · 1.02 KB
/
Dungeon Game.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
class Solution {
public int calculateMinimumHP(int[][] dungeon) {
// DP
if(dungeon == null || dungeon.length == 0 || dungeon[0].length == 0) return 0;
int m = dungeon.length, n = dungeon[0].length;
int[][] dp = new int[m][n];
// bottom right(Assume at least health 1 left after this cell)
dp[m-1][n-1] = Math.max(1 - dungeon[m-1][n-1], 1);
// bottom lane
for(int j = n-2; j >= 0; j--) dp[m-1][j] = Math.max(1, dp[m-1][j+1] - dungeon[m-1][j]);
// right lane
for(int i = m-2; i >= 0; i--) dp[i][n-1] = Math.max(1, dp[i+1][n-1] - dungeon[i][n-1]);
// the rest
for(int i = m-2; i >= 0; i--) {
for(int j = n-2; j >= 0; j--) {
int down = Math.max(1, dp[i+1][j] - dungeon[i][j]);
int right = Math.max(1, dp[i][j+1] - dungeon[i][j]);
dp[i][j] = Math.min(down, right);
}
}
return dp[0][0];
}
}