forked from rishabhgarg25699/Competitive-Programming
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rat_in_a_Maze.cpp
64 lines (53 loc) · 1.02 KB
/
Rat_in_a_Maze.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
#include<iostream>
using namespace std;
void solveMaze(int a[][10],int s[][10],int x,int y,int n)
{
if(x==n-1&&y==n-1)
{
s[x][y]=1; //Printing Final Maze
for(int p=0;p<n;p++)
{
for(int q=0;q<n;q++)
{
cout<<s[p][q]<<" ";
}
cout<<endl;
}
cout<<endl;
return;
}
if(x<0||y<0||x>n-1||y>n-1||a[x][y]==0||s[x][y]==1) //Avoiding Unreachable Cells
return;
s[x][y]=1;
solveMaze(a,s,x,y+1,n); //Going Right
solveMaze(a,s,x+1,y,n); //Going Down
s[x][y]=0; //Backtacking
}
int main()
{
int n;
cin>>n;
int a[10][10]; //Maximum of size of maze 10*10
for(int i=0;i<n;i++)
for(int j=0;j<n;j++)
cin>>a[i][j]; //Taking Input Maze
int s[10][10]={0};
solveMaze(a,s,0,0,n); //Output Maze
}
/*
Sample Input:
4
1 0 0 0
1 1 0 1
1 1 0 0
0 1 1 1
Sample Output:
1 0 0 0
1 1 0 0
0 1 0 0
0 1 1 1
1 0 0 0
1 0 0 0
1 1 0 0
0 1 1 1
*/