Matrix Tracing

This problem was posted by dheeraj on HackerRank.

Problem

Given an matrix find the number of unique paths from the top left corner to the bottom right corner. In each iteration we can only move RIGHT or DOWN. The result should be in mod .

Constraints

Solution

Phase 1

To start off let's use some egde cases. If the matrix given is then there is only one possible path. If or there is still only one possible path. We can only move in a single direction.

Now let's try an example with a matrix. We can fill the first row and column with s. Each cell in our matrix will represent the number of paths from the top left corner to the current cell. We can actually fill in the remaining cells by adding the cells to the left and above together. In order to reach we can either move down from or move right from .

The final result will be in the bottom right corner or our matrix. However there are some problems. There are cells in the matrix which is very inefficient as those number can become large.

Phase 2

In order to reduce space complexity we can try storing only two vectors of the matrix at a time. We can also pick the size of each vector to be M or_ N_ based on whichever is smaller. In our example M is smaller so our matrix now is . For every iteration we replace an old column with a new column without extra swapping. If N is even the result will be otherwise it will be .

Phase 3

Let's represent possible paths as string with the characters R and D. Another way to get the result is to find the number of unique strings. From statistics we can use the combination formula.

We can learn the following:

  1. The number of D's is M-1
  2. The number of R's is N-1
  3. The length of the string is M+N-2

We are almost done but the answer should be in mod . Let's use the variables x and y to break up our equation. Let's also use p to represent the modulus which is also a large prime number.

Analysis

SolutionTime ComplexitySpace Complexity
1
2
3