zoukankan      html  css  js  c++  java
  • Dungeon Game

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

    这题很有意思,出发的值其实我们不知道,但是最终到达终点P之后,所剩的值肯定为1。所以要从右下朝左上走。DP代码如下:

    class Solution(object):
        def calculateMinimumHP(self, dungeon):
            """
            :type dungeon: List[List[int]]
            :rtype: int
            """
            m = len(dungeon)
            n = len(dungeon[0])
            
            dp = [[sys.maxint] *(n+1) for i in xrange(m+1)]
            dp[m][n-1] = 1
            dp[m-1][n] = 1
            for i in xrange(m-1,-1,-1):
                for j in xrange(n-1,-1,-1):
                    need = min(dp[i+1][j], dp[i][j+1]) - dungeon[i][j]
                    dp[i][j] = need if need > 0 else 1
            
            return dp[0][0]
  • 相关阅读:
    Linux环境快速搭建elasticsearch6.5.4集群和Head插件
    威胁猎杀实战(三):基于Wazuh, Snort/Suricata和Elastic Stack的SOC
    Wazuh 实操
    开源EDR(OSSEC)基础篇- 02 -部署环境与安装方式
    Wazuh简介
    Android service ( 二) 远程服务
    Android service ( 一 ) 三种开启服务方法
    Android事件分发机制完全解析,带你从源码的角度彻底理解
    View (二) 自定义属性
    View (五)自定义View的实现方法
  • 原文地址:https://www.cnblogs.com/sherylwang/p/5920455.html
Copyright © 2011-2022 走看看