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)
  • 相关阅读:
    mongodb安装及操作
    小白学jQuery
    python break 和continue区别
    pyqt5 Qlabel控件添加图片单击进入网站
    pyqt5 主窗口退出,子窗口退出问题
    pyqt5 关于主窗口闪退
    python 浮点数不精确原因
    定时器 sched模块
    python 获得文件大小、修改时间等系统信息
    原码
  • 原文地址:https://www.cnblogs.com/h-hkai/p/9901405.html
Copyright © 2011-2022 走看看