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 (positiveintegers).
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.
class Solution { public: int dfs(int m_index, int n_index,int m, int n , vector<vector<int>>& dungeon, vector<vector<int>>& mmoe) { if (m_index>= m || n_index >=n) { return INT_MAX; } if (mmoe[m_index][n_index]!=-1) { return mmoe[m_index][n_index]; } if (m_index== m-1 && n_index ==n-1) { if (dungeon[m_index][n_index] >=0) { return 0; } else { return -dungeon[m_index][n_index]; } } int w1 = dfs(m_index+1,n_index,m,n,dungeon,mmoe); int w2 = dfs(m_index,n_index+1,m,n,dungeon,mmoe); int res = 0; res = min(w1,w2)-dungeon[m_index][n_index]; if (res<=0) { res = 0; } mmoe[m_index][n_index] = res; return res; } int calculateMinimumHP(vector<vector<int>>& dungeon) { int m = dungeon.size(); int n = dungeon[0].size(); vector<vector<int>> mmoe(m,vector<int>(n,-1)); return dfs(0,0,m,n,dungeon,mmoe) +1; } };
class Solution { public: int calculateMinimumHP(vector<vector<int>>& dungeon) { int n = dungeon.size(); int m = dungeon[0].size(); vector<vector<int>> dp(n+1,vector<int>(m+1,INT_MAX)); dp[n][m - 1] = dp[n - 1][m] = 1; for(int i = n-1;i >=0;--i) { for(int j = m-1;j >= 0 ;--j ) { int tmp = min(dp[i+1][j], dp[i][j+1]) - dungeon[i][j]; dp[i][j] = tmp<=0?1:tmp; //cout << i << j << " " << dp[i][j] << endl; } } return dp[0][0]; } };
1 class Solution { 2 public int calculateMinimumHP(int[][] dungeon) { 3 int n = dungeon.length; 4 int m = dungeon[0].length; 5 int[][] dp = new int[n+1][m+1]; 6 for(int i=0;i<=n;i++) 7 for(int j = 0;j<=m;j++) 8 dp[i][j] = Integer.MAX_VALUE; 9 dp[n][m-1] = 1; 10 dp[n-1][m] = 1; 11 12 for(int i=n-1;i>=0;i--) 13 for(int j = m -1;j>=0;j--){ 14 int need = Math.min(dp[i][j+1],dp[i+1][j]) - dungeon[i][j]; 15 dp[i][j] = need<=0?1:need; 16 } 17 return dp[0][0]; 18 } 19 }