zoukankan      html  css  js  c++  java
  • leetcode[174]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.

    思路:典型的动态规划,从右下角往左上角走,先初始化右下角及最后一行,最后一列,

             然后计算f[i][j](f[i][j]表示进入第i行第j列的格子所需要的能量值):

            1)right=dungeon[i][j]<f[i][j+1]?f[i][j+1]-dungeon[i][j]:1;

            2)down=dungeon[i][j]<f[i+1][j]?f[i+1][j]-dungeon[i][j]:1;

            3)f[i][j]=right<down?right:down;

    class Solution {
    public:
    int calculateMinimumHP(vector<vector<int> > &dungeon) {
        if(dungeon.empty())return 1;
        int m=dungeon.size();
        if(dungeon[0].empty())return 1;
        int n=dungeon[0].size();
        vector<vector<int> >  f(m,vector<int> (n,0));
        f[m-1][n-1]=dungeon[m-1][n-1]<0?1-dungeon[m-1][n-1]:1;
        for(int i=m-2;i>=0;i--)
            f[i][n-1]=dungeon[i][n-1]<f[i+1][n-1]?f[i+1][n-1]-dungeon[i][n-1]:1;
        for(int j=n-2;j>=0;j--)
            f[m-1][j]=dungeon[m-1][j]<f[m-1][j+1]?f[m-1][j+1]-dungeon[m-1][j]:1;
        for(int i=m-2;i>=0;i--)
        {
            for(int j=n-2;j>=0;j--)
            {
                int right=dungeon[i][j]<f[i][j+1]?f[i][j+1]-dungeon[i][j]:1;
                int down=dungeon[i][j]<f[i+1][j]?f[i+1][j]-dungeon[i][j]:1;
                f[i][j]=right<down?right:down;
            }
        }
        return f[0][0];
    }
    };
  • 相关阅读:
    前端资源
    WCF常见异常-The maximum string content length quota (8192) has been exceeded while reading XML data
    Asp.Net MVC路由调试工具-RouteDebugger
    Java中String 的equals 和==详解
    记一次高级java工程师职位的面试
    java中Class对象详解和类名.class, class.forName(), getClass()区别
    2014读书计划
    Javascript quiz
    CSS3 Flexbox布局那些事
    前端开发中的图片优化
  • 原文地址:https://www.cnblogs.com/Vae1990Silence/p/4280651.html
Copyright © 2011-2022 走看看