-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFind shortest safe route in a matrix.cpp
131 lines (104 loc) · 2.6 KB
/
Find shortest safe route in a matrix.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
//{ Driver Code Starts
//Initial Template for C++
#include <bits/stdc++.h>
using namespace std;
// } Driver Code Ends
//User function Template for C++
class Node
{
public:
int x;
int y;
int cnt;
};
class Solution
{
int dr[4] = {0,0,-1,1};
int dc[4] = {-1,1,0,0};
bool isSafe(int newX, int newY, int n, int m)
{
if(newX >=0 && newY >=0 && newX < n && newY < m) return true;
return false;
}
public:
int findShortestPath(vector<vector<int>> &mat)
{
int n = mat.size();
int m = mat[0].size();
for(int i = 0; i < n; i++)
{
for(int j = 0; j < m; j++)
{
if(mat[i][j] == 0)
{
for(int k = 0; k < 4; k++)
{
int newX = i + dr[k];
int newY = j + dc[k];
if(isSafe(newX, newY, n, m))
{
mat[newX][newY] = -1;
}
}
}
}
}
int ans = -1;
queue<Node> q;
vector<vector<bool>> vis(n, vector<bool>(m,false));
for(int i = 0; i < n; i++)
{
if(mat[i][0] == 1)
{
q.push({i,0,1});
}
}
ans = INT_MAX;
while(!q.empty())
{
int x = q.front().x;
int y = q.front().y;
int cnt= q.front().cnt;
q.pop();
if(y == m - 1)
{
return cnt;
}
vis[x][y] = true;
for(int k = 0; k < 4; k++)
{
int newX = x + dr[k];
int newY = y + dc[k];
if(isSafe(newX, newY, n, m) && vis[newX][newY] == false && mat[newX][newY] == 1)
{
q.push({newX, newY, cnt + 1});
}
}
}
return -1;
}
};
//{ Driver Code Starts.
int main()
{
int t;
cin >> t;
while (t--)
{
int R, C;
cin >> R >> C;
vector<vector<int>> mat(R, vector<int>(C));
for (int i = 0; i < R; i++)
{
for (int j = 0; j < C; j++)
{
cin >> mat[i][j];
}
}
Solution ob;
int ans = ob.findShortestPath(mat);
cout << ans << "\n";
}
return 0;
}
// } Driver Code Ends