Title: Rat in a Maze Source: www.geeksforgeeks.org
Let us discuss Rat in a Maze as another example problem that can be solved using Backtracking.
A Maze is given as N*N binary matrix of blocks where source block is the upper left most block i.e., maze[0][0] and destination block is lower rightmost block i.e., maze[N-1][N-1]. A rat starts from source and has to reach destination. The rat can move only in two directions: forward and down.
In the maze matrix, 0 means the block is dead end and 1 means the block can be used in the path from source to destination. Note that this is a simple version of the typical Maze problem. For example, a more complex version can be that the rat can move in 4 directions and a more complex version can be with limited number of moves.
Following is an example maze.
Gray blocks are dead ends (value = 0).
Following is binary matrix representation of the above maze.
1 2 3 4 |
{1, 0, 0, 0} {1, 1, 0, 1} {0, 1, 0, 0} {1, 1, 1, 1} |
Following is maze with highlighted solution path.
Following is the solution matrix (output of program) for the above input matrx.
1 2 3 4 5 |
{1, 0, 0, 0} {1, 1, 0, 0} {0, 1, 0, 0} {0, 1, 1, 1} All enteries in solution path are marked as 1. |
Naive Algorithm
The Naive Algorithm is to generate all paths from source to destination and one by one check if the generated path satisfies the constraints.
1 2 3 4 5 6 7 8 |
while there are untried paths { generate the next path if this path has all blocks as 1 { print this path; } } |
Backtrackng Algorithm
1 2 3 4 5 6 7 8 9 10 |
If destination is reached print the solution matrix Else a) Mark current cell in solution matrix as 1. b) Move forward in horizontal direction and recursively check if this move leads to a solution. c) If the move chosen in the above step doesn't lead to a solution then move down and check if this move leads to a solution. d) If none of the above solutions work then unmark this cell as 0 (BACKTRACK) and return false. |
Implementation of Backtracking solution
Java solution
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
/* http://www.geeksforgeeks.org/backttracking-set-2-rat-in-a-maze/ */ class RatMaze { private static final int N = 4; private final int[][] maze; private final int[][] solution; public RatMaze() { maze = new int[][]{ {1, 0, 0, 0}, {1, 1, 0, 1}, {0, 1, 0, 0}, {1, 1, 1, 1} }; solution = new int[N][N]; } public static void main(String args[]) { RatMaze ratMaze = new RatMaze(); if(!ratMaze.solveMaze(0, 0)) System.out.println("Solution doesn't exist"); } public boolean solveMaze(int x, int y) { if(x==N-1 && y==N-1) { solution[x][y] =1; printSolution(); return true; } if(isSafe(x, y)) { solution[x][y] = 1; if(solveMaze(x, y+1)) return true; if(solveMaze(x+1, y)) return true; solution[x][y] = 0; //return false; } return false; } public boolean isSafe(int x, int y) { if(x >=0 && x<N && y>=0 && y<N && maze[x][y]!=0) return true; return false; } public void printSolution() { for(int row=0;row<N;row++) { for(int col=0;col<N;col++) System.out.print(solution[row][col]+" "); System.out.println(); } System.out.println(); } } |