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 (positiveintegers).

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)-33
-5-101
1030-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.

这是一个多阶段优化问题,有广搜,贪心,动规。这题显然贪心不行,于是范围缩 小到广搜和动规。本题求最小健康点数,跟路径长度无关,因此广搜不适合。最后 只剩下了动规这个方向。

先定义状态, f[i][j] 表示进入 (i,j) 这个格子前所需要的最小健康点数。再考虑状态的初始值,我们发现右下角那个坐标才是初始值,起点 f[0][0] 反而
不知道,于是大致可以知道,这题是从右下角向左上角来填表。右下角格子,如果
该格子的值为负数,那么进入这个格子前骑士需要的健康点数是 -dungeon[i] [j]+1 ,即初始值 f[i][j]=-dungeon[i][j]+1 ,如果格子的值是非负数,那么初 始 值 f[i][j]=1 。
接下来寻找状态转移方程。从初始值我们可以推测出状态转移是从右下角反向的, 可以得到状态转移方程如下:

f[i][j]=max(1, -dungeon[i][j]+min(f[i+1][j],f[i][j+1])

class Solution {
    public int calculateMinimumHP(int[][] dungeon) {
        int m = dungeon.length;
        int n = dungeon[0].length;
        if (m == 0 || n == 0)
            return 0;
        int[][] f = new int[m][n];
        f[m - 1][n - 1] = Math.max(1, -dungeon[m - 1][n - 1] + 1);
        
        for (int i = m - 2; i >= 0; i--) {
            f[i][n - 1] = Math.max(1, -dungeon[i][n - 1] + f[i + 1][n - 1]);
        }
        
        for (int j = n - 2; j >= 0; j--) {
            f[m - 1][j] = Math.max(1, -dungeon[m - 1][j] + f[m - 1][j + 1]);
        }
        
        for (int i = m - 2; i >= 0; i--) {
            for (int j = n - 2; j >= 0; j--) {
                f[i][j] = Math.max(1, -dungeon[i][j] +
                                  Math.min(f[i + 1][j], f[i][j + 1]));
            }
        }
        return f[0][0];
    }
}

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值