-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathValidPath.cpp
87 lines (70 loc) · 2.28 KB
/
ValidPath.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
/*
There is a rectangle with left bottom as (0, 0) and right up as (x, y). There are N circles such that their centers are inside the rectangle.
Radius of each circle is R. Now we need to find out if it is possible that we can move from (0, 0) to (x, y) without touching any circle.
Note : We can move from any cell to any of its 8 adjecent neighbours and we cannot move outside the boundary of the rectangle at any point of time.
Input Format
1st argument given is an Integer x.
2nd argument given is an Integer y.
3rd argument given is an Integer N, number of circles.
4th argument given is an Integer R, radius of each circle.
5th argument given is an Array A of size N, where A[i] = x cordinate of ith circle
6th argument given is an Array B of size N, where B[i] = y cordinate of ith circle
Output Format
Return YES or NO depending on weather it is possible to reach cell (x,y) or not starting from (0,0).
Constraints
0 <= x, y, R <= 100
1 <= N <= 1000
Center of each circle would lie within the grid
For Example
Input:
x = 2
y = 3
N = 1
R = 1
A = [2]
B = [3]
Output:
NO
Explanation:
There is NO valid path in this case
LINK: https://www.interviewbit.com/problems/valid-path/
*/
int X[] = {0, 0, 1, 1, 1, -1, -1, -1};
int Y[] = {1, -1, 0, 1, -1, 0, 1, -1};
string Solution::solve(int A, int B, int C, int D, vector<int> &E, vector<int> &F)
{
int rect[A+1][B+1];
memset(rect, 0 , sizeof(rect));
for(int i=0;i<=A;i++)
for(int j=0;j<=B;j++)
for(int k=0;k<C;k++)
if(sqrt(pow(E[k]-i, 2) + pow(F[k]-j, 2)) <= D)
{
rect[i][j] = 1;
break;
}
if(rect[0][0]==1 || rect[A][B]==1)
return "NO";
queue<pair<int,int> > q;
q.push({0,0});
rect[0][0] = 1;
while(!q.empty())
{
int x = q.front().first;
int y = q.front().second;
q.pop();
if(x==A && y==B)
return "YES";
for(int i=0;i<8;i++)
{
int newx = x + X[i];
int newy = y + Y[i];
if(newx>=0 && newx<=A && newy>=0 && newy<=B && rect[newx][newy]==0)
{
rect[newx][newy] = 1;
q.push({newx,newy});
}
}
}
return "NO";
}