Leetcode 174. Dungeon Game

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/u013596119/article/details/84833082

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 (negativeintegers) 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.

Answer:

扫描二维码关注公众号,回复: 4393290 查看本文章
class Solution(object):
    def calculateMinimumHP(self, dungeon):
        """
        :type dungeon: List[List[int]]
        :rtype: int
        """
        m=len(dungeon)
        if m==0:
            return 0
        n=len(dungeon[0])
        if n==0:
            return 0
        
        dp=[row[:] for row in dungeon]
        
        dp[m-1][n-1]=1-min(dp[m-1][n-1],0)
        
        for i in range(m-2,-1,-1):
            dp[i][n-1]=max(dp[i+1][n-1]-dp[i][n-1],1)
        
        for j in range(n-2,-1,-1):
            dp[m-1][j]=max(dp[m-1][j+1]-dp[m-1][j],1)
            
        for i in range(m-2,-1,-1):
            for j in range(n-2,-1,-1):
                right=dp[i+1][j]
                down=dp[i][j+1]
                current=dp[i][j]
                dp[i][j]=min(max(right-current,1),max(down-current,1))
        #print dp
        return dp[0][0]
            

参考:https://www.youtube.com/watch?v=Ir8ePM_gDUk

dp保存进入当前块需要的生命值

举例:

[2,2]位置,进入时需要生命值6, 6-5=1,6=1-(-5)

[1,2]位置,进入时需要生命值5,5+1=6, 6-1=5

[2,1]位置,进入时需要生命值1,  1+30=30>6,    max(6-30,0)

...

猜你喜欢

转载自blog.csdn.net/u013596119/article/details/84833082