[leetcode] 174. Dungeon Game

网友投稿 530 2022-10-02

[leetcode] 174. Dungeon Game

[leetcode] 174. Dungeon Game

Description

The demons had captured the princess - 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.在一个M*N的房间里,现在从左上角走到右下角,空格里面的值代表你的血量收益/损失,为正代表血量会增加相应的值;为负代表血量会减少相应的值。

分析

题目的意思是:

来自小象学院的dp解法,我膜拜一下,从左下角反推到右上角,核心思想就是保证血量不少于1就行了。

代码

class Solution {public: int calculateMinimumHP(vector>& dungeon) { if(dungeon.size()==0){ return 0; } int m=dungeon.size(); int n=dungeon[0].size(); vector> dp(m,vector(n,0)); dp[m-1][n-1]=max(1,1-dungeon[m-1][n-1]); for(int i=n-2;i>=0;i--){ dp[m-1][i]=max(1,dp[m-1][i+1]-dungeon[m-1][i]); } for(int i=m-2;i>=0;i--){ dp[i][n-1]=max(1,dp[i+1][n-1]-dungeon[i][n-1]); } for(int i=m-2;i>=0;i--){ for(int j=n-2;j>=0;j--){ int t=min(dp[i+1][j],dp[i][j+1]); dp[i][j]=max(1,t-dungeon[i][j]); } } return dp[0][0]; }};

参考文献

​​[LeetCode] Dungeon Game 地牢游戏​​

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:微信小程序加载失败是什么原因?(小程序加载失败怎么办)
下一篇:微信拍了拍怎么玩?(微信上拍了拍怎么玩)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~