Dungeon Game

This page explains Java solution to problem Dungeon Game using Dynamic Programming algorithm.

Problem Statement

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.

Example 1:Input
Dungeon Game Input
Output: 7
Explanation:
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.

Solution

If you have any suggestions in below code, please create a pull request by clicking here.

package com.vc.hard;

class DungeonGame {
    public int calculateMinimumHP(int[][] arr) {
        if(arr == null || arr.length == 0) return 0;

        int m = arr.length;
        int n = arr[0].length;
        for(int i = m - 1; i >= 0; i--) {
            for(int j = n - 1; j >= 0; j--) {
                if(i == m - 1 && j == n - 1) {
                    arr[i][j] = Math.min(0, arr[i][j]);
                }
                else if(i == m - 1) {
                    arr[i][j] = Math.min(0, arr[i][j] + arr[i][j + 1]);
                }
                else if(j == n - 1) {
                    arr[i][j] = Math.min(0, arr[i][j] + arr[i + 1][j]);
                }
                else {
                    arr[i][j] = Math.min(0, arr[i][j] + Math.max(arr[i + 1][j], arr[i][j + 1]));
                }
            }
        }
        return -arr[0][0] + 1;
    }
}

Time Complexity

O(M * N) Where
M is number of rows in an input array
N is number of cols in an input array

Space Complexity

O(M * N) Where
M is number of rows in an input array
N is number of cols in an input array