Description
The purpose of this problem is to give the shortest path through a maze. The maze will be provided in a codified matrix of size M x N where each element of the matrix represents a place in the grid and the value of each element is a binary-code that represents the presence of walls. That is:
+ + value = 0 -> 00 -> no walls -> NW + +
+ + value = 1 -> 01 -> wall to W -> | NW + +
+---+ value = 2 -> 10 -> wall to N -> NW + +
+---+ value = 3 -> 11 -> walls to N and W -> | + +
Note: all outer boundaries are walls. My test cases provide for this already. You do not need to account for this.
The path will always start at the NorthWest corner (subscript (1,1)) and end at the SouthEast corner (subscript (M,N)). The output should be a matrix of the same size as the input matrix that lists the steps you need to go through to traverse the maze with the remaining squares being 0. For example,
path = [ 1 2 0 0 0 0 4 3 0 9 10 0 5 6 7 8 11 0 0 0 0 0 12 13 ]
which represents an output solution that is 13 units long. As you can see, the NorthWest corner will always be 1 and the SouthEast corner will always be the length of your path.
You are NOT guaranteed that there will be only one shortest path for the test cases. If there exist multiple shortest paths, you must represent them all. It can easily be shown that the superposition of two shortest paths will never lead to a multi-valued element in the output matrix.
Example
Input maze:
maze = [ 3 2 2 2 3 1 3 2 2 3 1 3 2 3 1 1 1 0 2 0 1 0 2 1 1 ];
Graphical Representation:
+---+---+---+---+---+ | | | + +---+---+---+---+ | | | | + +---+---+---+ + | | | | | + + + +---+ + | | | + + +---+ + + | | | | +---+---+---+---+---+
Solution:
soln = [ 1 0 0 0 0 2 0 0 0 0 3 0 0 0 0 4 7 8 9 10 5 6 0 0 11 ]
Graphical Representation:
+---+---+---+---+---+ | 1 | | + +---+---+---+---+ | 2 | | | + +---+---+---+ + | 3 | | | | + + + +---+ + | 4 | 7 8 9 10 | + + +---+ + + | 5 6 | |11 | +---+---+---+---+---+
wow, this is the most amazing MATLAB BFS implementations i've ever seen, and you're doing it with 2 roots at once. I'm seriously impressed. also, using sparse to make the graph from the maze matrix is genius
i am no match for your usage of the "sparse" function. I really need to learn more about it.
Sort a list of complex numbers based on far they are from the origin.
3792 Solvers
552 Solvers
Back to basics 21 - Matrix replicating
904 Solvers
Return unique values without sorting
488 Solvers
Getting the indices from a matrice
266 Solvers