Solution: Queries on Number of Points Inside a Circle
Let’s solve the Queries on Number of Points Inside a Circle problem using the Math and Geometry pattern.
We'll cover the following
Statement
Given an array of points, where each point is represented as points[i]
queries[j]
For each query, your task is to determine how many points lie within or on the boundary of the specified circle. The function should return an array answer
, where answer[j]
holds the number of points inside the
Note: Points on the circle’s edge should also be counted inside the circle.
Constraints:
points.length
points[i].length
queries.length
queries[j].length
Solution
To achieve this, the approach uses sorting and binary search to minimize the number of points examined for each query. Sorting the points based on their
A point
lies inside or on the boundary of a circle centered at with radius if the following condition holds:
Note: The formula above compares the squared distance with the squared radius to avoid unnecessary square root computations.
By sorting the points by their x-coordinate, the algorithm narrows them down to those within the range
along the -axis. This step significantly reduces the number of points that must be checked against the circle’s boundary, particularly when points are sparsely distributed. To further optimize the search, binary search is applied on the sorted points to quickly locate the first point with an x-coordinate
and the last point with an x-coordinate . This efficiently identifies the relevant subset of points that might fall inside the circle, reducing the search space from the entire set of points to only those within this range. Once the
-coordinate range is identified, the algorithm iterates only over the subset of points within this range. For each point, the circle’s equation is used to verify if the point lies inside or on the circle’s boundary.
Here’s the step-by-step implementation of the solution:
Initialize an array,
answer
, to store the result for each query.Sorts the
points
to allow range queries using binary search.For every query
(x
j
, y
j
, r
j
)
:Find the first point where
x ≥ x
j
- r
j
using thebinarySearch
helper function with the parameterfindLeft
set to TRUE and store it to theleft
. This starts the range of relevant points.Find the first point where
x > x
j
+ r
j
using thebinarySearch
helper function with the parameterfindLeft
set to FALSE and store it to theright
. This ends the range of relevant points.Together, points from
left
toright
give the subset of points that could fall within the circle’s range.Iterate through points from
left
toright
:Check if each point
(x, y)
satisfies the distance formula(x
j
- x)
2
+ (y
j
- y)
2
≤ r
j
2
If TRUE, increment
count
by. This ensures that only points inside or on the circle’s boundary are counted.
Append the
count
to theanswer
.
After processing all queries, return the
answer
.
The helper function, binarySearch
, with the findLeft
parameter set to TRUE, uses binary search to find the smallest index in the sorted points array where the x-coordinate is greater than or equal to the lower bound of the circle’s range binarySearch
with the findLeft
parameter set to FALSE uses binary search to find the smallest index where the x-coordinate is strictly greater than the upper bound of the circle’s range
Let’s look at the following illustration to get a better understanding of the solution:
Level up your interview prep. Join Educative to access 70+ hands-on prep courses.