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)
  • 相关阅读:
    转:LoadRunner响应时间与用户体验时间不一致问题的深入分析
    转:JMeter 参数化之利用JDBC Connection Configuration从数据库读取数据并关联变量
    转:Web性能压力测试工具之ApacheBench(ab)详解
    转:Web网站性能测试分析及调优实例
    转:apache 的mod-status
    转:Android应用性能测试
    转:Jmeter以non-gui模式进行分布式测试
    转:详解JMeter正则表达式(2)
    转:详解JMeter正则表达式(1)
    支持 导入 导出Excel,导出Word, 导出PDF。
  • 原文地址:https://www.cnblogs.com/h-hkai/p/9901405.html
Copyright © 2011-2022 走看看