码迷,mamicode.com
首页 > 其他好文 > 详细

Dungeon Game

时间:2015-04-07 21:44:54      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:dungeon game   leetcode   

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)

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.

Credits:
Special thanks to @stellari for adding this problem and creating all test cases.

思路:有点类似于Unique PathsUnique Paths II问题,动态规划解决。

Java代码如下:

public class Solution {
    public int calculateMinimumHP(int[][] dungeon) {
        if (dungeon == null || dungeon.length == 0) {
			return 0;
		}
		int m = dungeon.length;
		int n = dungeon[0].length;
		int[][] dp = new int[m][n];//dp[i][j]表示要想通过位置(i,j),到达(i,j)处位置时,至少要有dp[i][j]滴血
		if (dungeon[m - 1][n - 1] > 0) {
			dp[m - 1][n - 1] = 1;
		} else {
			dp[m - 1][n - 1] = 1 - dungeon[m - 1][n - 1];
		}
		for (int i = n - 2; i >= 0; i--) {
			if (dp[m-1][i + 1] > dungeon[m-1][i])
				dp[m-1][i] = dp[m-1][i + 1] - dungeon[m-1][i];
			else
				dp[m-1][i] = 1;
		}
		for (int i = m - 2; i >= 0; i--) {
			if (dp[i + 1][n - 1] > dungeon[i][n - 1])
				dp[i][n - 1] = dp[i + 1][n - 1] - dungeon[i][n - 1];
			else
				dp[i][n - 1] = 1;
		}
		for (int i = m - 2; i >= 0; i--) {
			for (int j = n - 2; j >= 0; j--) {
				int min = Math.min(dp[i][j + 1], dp[i + 1][j]);
				if (dungeon[i][j] <= min) {
					dp[i][j] = min - dungeon[i][j];
				} else {
					dp[i][j] = 1;
				}
			}
		}
		return dp[0][0];
    }
}






Dungeon Game

标签:dungeon game   leetcode   

原文地址:http://blog.csdn.net/u010786672/article/details/44925023

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!