美文网首页
Leetcode - Dungeon Game

Leetcode - Dungeon Game

作者: 哈比猪 | 来源:发表于2016-10-19 15:24 被阅读0次

    题目链接

    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

    题目

    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

    解题思路

    TODO (稍后补充)

    解题代码

    class Solution {
    public:
        int calculateMinimumHP(vector<vector<int>>& dungeon) {
            int row = dungeon.size();
            if (0 == row) return 0;
            int col = dungeon[0].size();
            
            vector<vector<int> > minInitial(row, vector<int>(col, 0));
            
            
            minInitial[row-1][col-1] = dungeon[row-1][col-1] >0 ? 1 : (0 - dungeon[row-1][col-1] + 1);
            
            for(int i=row-2;i>=0;i--) {
                if((dungeon[i][col-1] - minInitial[i+1][col-1]) >=0) {
                    minInitial[i][col-1] = 1;
                }
                else {
                    minInitial[i][col-1] = minInitial[i+1][col-1] - dungeon[i][col-1];
                }
            }
            
            for(int i=col-2;i>=0;i--) {
                if((dungeon[row-1][i] - minInitial[row-1][i+1]) >=0) {
                    minInitial[row-1][i] = 1;
                }
                else {
                    minInitial[row-1][i] = minInitial[row-1][i+1] - dungeon[row-1][i];
                }
            }
    
            for(int i=row-2;i>=0;i--) {
                for(int j=col-2;j>=0;j--) {
                    int minInit = minInitial[i+1][j] >= minInitial[i][j+1] ? minInitial[i][j+1] : minInitial[i+1][j];
                    if ((dungeon[i][j]-minInit) >= 0) {
                        minInitial[i][j] = 1;
                    }
                    else {
                        minInitial[i][j] = minInit - dungeon[i][j];
                    }
                }
            }
            
            for(int i =0;i<row;i++) {
                for(int k=0;k<col;k++) {
                    cout<<i<<","<<k<<": "<<minInitial[i][k]<<endl;
                }
            }
            
            return minInitial[0][0];
            
        }
    };
    

    相关文章

      网友评论

          本文标题:Leetcode - Dungeon Game

          本文链接:https://www.haomeiwen.com/subject/nmexuttx.html