zoukankan      html  css  js  c++  java
  • 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)

    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.
     

    Approach #1:  Using DFS (have bugs)

    class Solution {
    public:
        int calculateMinimumHP(vector<vector<int>>& dungeon) {
            int row = dungeon.size();
            int col = dungeon[0].size();
            return dfs(dungeon, row, col, 0, 0, dungeon[0][0], 0);
        }
        
        int dfs(vector<vector<int>>& dungeon, int row, int col, int i, int j, int bloods, int need) {
            if (i == row-1 && j == col-1) return need;
            if (i+1 < row) {
                if (j+1 < col) {
                    if (dungeon[i+1][j] < dungeon[i][j+1]) {
                        if (bloods+dungeon[i][j+1] < 0) {
                            need += -(bloods+dungeon[i][j+1]);
                            bloods = 0;
                        } else {
                            bloods += dungeon[i][j+1];
                        }
                        dfs(dungeon, row, col, i, j+1, bloods, need);
                    } else {
                        if (bloods+dungeon[i+1][j] < 0) {
                            need += -(bloods+dungeon[i+1][j]);
                            bloods = 0;
                        } else {
                            bloods += dungeon[i+1][j];
                        }
                        dfs(dungeon, row, col, i+1, j, bloods, need);
                    }
                } else {
                    if (bloods+dungeon[i+1][j] < 0) {
                        need += -(bloods+dungeon[i+1][j]);
                        bloods = 0;
                    } else {
                        bloods += dungeon[i+1][j];
                    }
                    dfs(dungeon, row, col, i+1, j, bloods, need);
                }
            } else {
                if (j+1 < col) {
                    if (bloods+dungeon[i][j+1] < 0) {
                        need += -(bloods+dungeon[i][j+1]);
                        bloods = 0;
                    } else {
                        bloods += dungeon[i][j+1];
                    }
                    dfs(dungeon, row, col, i, j+1, bloods, need);
                }
            }
            
        }
    };
    

      

    Approach #2: Using DP

    class Solution {
    public:
        int calculateMinimumHP(vector<vector<int>>& dungeon) {
            int row = dungeon.size();
            int col = dungeon[0].size();
            vector<vector<int>> hp(row+1, vector<int>(col+1, INT_MAX));
            hp[row-1][col] = 1, hp[row][col-1] = 1;
            for (int i = row-1; i >= 0; --i) {
                for (int j = col-1; j >= 0; --j) {
                    int need = min(hp[i+1][j], hp[i][j+1]) - dungeon[i][j];
                    hp[i][j] = need <= 0 ? 1 : need;
                }
            }
            return hp[0][0];
        }
    };
    

    Runtime: 4 ms, faster than 99.42% of C++ online submissions for Dungeon Game.

    永远渴望,大智若愚(stay hungry, stay foolish)
  • 相关阅读:
    myeclipse tomcat启动,内存溢出问题
    SQL Server 中的模糊查询 LIKE
    GridView学习
    自己手动创建dataset的方法(不用从数据库倒入)
    关于在updatepanel中response失效的解决方法
    CSS中背景图片定位方法
    Visual Studio 2005中调试SQL Server 2005的存储过程
    第二个dropdownlist不能触发selectchange的问题
    C/C++ 控制台窗口暂停
    蛇形矩阵
  • 原文地址:https://www.cnblogs.com/h-hkai/p/9901405.html
Copyright © 2011-2022 走看看