Tuesday, September 29, 2020

[Microsoft][LeetCode] Dungeon Game

Problem: 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. Here are few points to be considered -

  • 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.

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)


Approach: Use DP. We can maintain a 2D table where Table[i][j] will tell the minimum health points required to reach (m - 1, n - 1), where m is number of rows and n is number of columns, from (i, j). Obviously our answer will be Table[0][0]. Here is how we will fill the table:

  1. Table[m - 1][n - 1] = Max (1 - Matrix[m - 1][n - 1], 1) // At least1 is required
  2. Foreach i from m - 1 to 0 and j from n - 1 to 0: 
            Table[i][j] = Max ( Min (Table[i + 1][j], Table[i][j + 1]) - Matrix[i][j], 1)

Please note that in above statement, you have to take care of boundary conditions.


Implementation in C#:

        public int CalculateMinimumHP(int[][] dungeon)

        {

            int[,] minHealthHP = new int[dungeon.Length, dungeon[0].Length];

            minHealthHP[dungeon.Length - 1, dungeon[0].Length - 1] = Math.Max(1 - dungeon[dungeon.Length - 1][dungeon[0].Length - 1], 1);

            for (int i = dungeon.Length - 2; i >= 0; --i)

            {

                minHealthHP[i, dungeon[0].Length - 1] = Math.Max(minHealthHP[i + 1, dungeon[0].Length - 1] - dungeon[i][dungeon[0].Length - 1], 1);

            }

            for (int i = dungeon[0].Length - 2; i >= 0; --i)

            {

                minHealthHP[dungeon.Length - 1, i] = Math.Max(minHealthHP[dungeon.Length - 1, i + 1] - dungeon[dungeon.Length -1][i], 1);

            }

            for (int i = dungeon.Length - 2; i >= 0; --i)

            {

                for (int j = dungeon[0].Length - 2; j >= 0; --j)

                {

                    minHealthHP[i, j] = Math.Max(Math.Min(minHealthHP[i + 1, j], minHealthHP[i, j + 1]) - dungeon[i][j], 1);

                }

            }

            return minHealthHP[0, 0];

        }


Complexity: O(m * n) => O(n^2)

No comments:

Post a Comment