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)
  • 相关阅读:
    C# GDI+图形程序设计看书笔记
    SQL2008转SQL2005
    vb6 调用 .Net Dll
    VS编译后的postevent
    Bind 和 ScaffoldColumn
    转: MarshalAs与StructLayout
    Microsoft .NET Compact Framework 开发常见问题解答
    .Net2.0 使用ConfigurationManager读写配置文件
    在.NET中使用命名管道完成进程间通信[转]
    C# 取电信公网IP并发送邮件
  • 原文地址:https://www.cnblogs.com/h-hkai/p/9901405.html
Copyright © 2011-2022 走看看