forked from piyush-kash/Hacktober2021-cpp-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RatInMaze.cpp
113 lines (93 loc) · 1.9 KB
/
RatInMaze.cpp
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/*A maze is in the form of a 2D matrix in which some cells/blocks are blocked. One of the cells is termed as a source cell, from where we have to start.
And another one of them is termed as a destination cell, where wehave to reach.
We have to find a path from the source to the destination without moving into any of the blocked cells.
A picture of an unsolved maze is shown below, where grey cells denote the dead ends and white cells denote the cells which can be accessed.
*/
#include<iostream>
using namespace std;
//It will check if we can move to next cell of matrix or not
bool isSafe(int **arr,int x,int y,int n)
{
if(x<n && y<n && arr[x][y]==1)
{
return true;
}
return false;
}
bool RatInMaze(int **arr,int x,int y,int n,int **solve)
{
if(x==n-1 && y==n-1)//base condition when rat reaches to its destination
{
solve[x][y]=1;
return true;
}
if(isSafe(arr,x,y,n))
{
solve[x][y]=1;
if(RatInMaze(arr,x+1,y,n,solve)) //moving to right direction
{
return true;
}
if(RatInMaze(arr,x,y+1,n,solve)) //moving to down direction
{
return true;
}
solve[x][y]=0; //if we have choosen wrong direction then backtrack means move to initial right direction again
return false;
}
return false;
}
int main()
{
int n;
cin>>n;
//dynamically alloted space to 2D array
int** arr = new int *[n];
for(int i=0;i<n;i++)
{
arr[i] = new int[n];
}
for(int i=0;i<n;i++)
{
for(int j=0;j<n;j++)
{
cin>>arr[i][j];
}
}
//resultant 2D array
int** solve = new int *[n];
for(int i=0;i<n;i++)
{
solve[i] = new int[n];
for(int j=0;j<n;j++)
{
solve[i][j]=0;
}
}
cout<<endl;
cout<<endl;
if(RatInMaze(arr,0,0,n,solve))
{
for(int i=0;i<n;i++)
{
for(int j=0;j<n;j++)
{
cout<<solve[i][j]<<" ";
}
cout<<endl;
}
}
else
{
cout<<"Path is not there in the maze.";
}
}
//Sample Input
//5
/*
1 0 1 0 1
1 1 1 1 1
0 1 0 1 0
1 0 0 1 1
1 1 1 0 1
*/