We use cookies (including Google cookies) to personalize ads and analyze traffic. By continuing to use our site, you accept our Privacy Policy.

Maximum Number of Darts Inside of a Circular Dartboard

Difficulty: Hard


Problem Description

Alice is throwing n darts on a very large wall. You are given an array darts where darts[i] = [xi, yi] is the position of the ith dart that Alice threw on the wall. Bob knows the positions of the n darts on the wall. He wants to place a dartboard of radius r on the wall so that the maximum number of darts that Alice throws lie on the dartboard. Given the integer r, return the maximum number of darts that can lie on the dartboard.


Key Insights

  • The dartboard can be positioned anywhere on the wall, and the objective is to maximize the number of darts inside it.
  • The distance from a dart to the center of the dartboard should be less than or equal to the radius r.
  • It is essential to check various potential centers for the dartboard, particularly those that lie on the line segments between pairs of darts.

Space and Time Complexity

Time Complexity: O(n^2) - We check each pair of darts and calculate the potential centers. Space Complexity: O(1) - We use a constant amount of space for calculations.


Solution

To solve this problem, we will:

  1. Iterate through each pair of darts to determine possible centers for the dartboard.
  2. For each center, count how many darts fall within the radius r.
  3. Use geometric properties to quickly compute if a dart lies within the dartboard using the distance formula.

The data structures used in this solution are simple arrays (for storing dart positions) and a few variables for counting darts and storing maximum counts. The algorithm primarily employs a brute-force approach enhanced by geometric insights.


Code Solutions

def maxDartsInsideDartboard(darts, r):
    def countDarts(center_x, center_y):
        count = 0
        for x, y in darts:
            if (x - center_x) ** 2 + (y - center_y) ** 2 <= r ** 2:
                count += 1
        return count

    max_count = 0
    n = len(darts)

    for i in range(n):
        for j in range(i + 1, n):
            x1, y1 = darts[i]
            x2, y2 = darts[j]

            # Midpoint
            mx = (x1 + x2) / 2
            my = (y1 + y2) / 2
            d = ((x2 - x1) ** 2 + (y2 - y1) ** 2) ** 0.5

            if d > 2 * r:
                continue

            # Height from midpoint to circle
            h = (r ** 2 - (d / 2) ** 2) ** 0.5

            # Angle to find the two possible centers
            dx = (y2 - y1) / d
            dy = (x1 - x2) / d

            center1_x = mx + h * dx
            center1_y = my + h * dy
            center2_x = mx - h * dx
            center2_y = my - h * dy

            max_count = max(max_count, countDarts(center1_x, center1_y), countDarts(center2_x, center2_y))

    return max_count

# Example usage
print(maxDartsInsideDartboard([[-2,0],[2,0],[0,2],[0,-2]], 2)) # Output: 4
← Back to All Questions