Problem Description
Given the positions of houses and heaters on a horizontal line, return the minimum radius of heaters needed to warm all houses. A house can be warmed if it is within the heater's warm radius range.
Key Insights
- Each heater can warm houses that are within a certain distance (radius).
- The goal is to find the smallest radius that ensures all houses are covered by at least one heater.
- Sorting the positions of both houses and heaters simplifies the problem, allowing for efficient searching.
Space and Time Complexity
Time Complexity: O(N log N + M log M) where N is the number of houses and M is the number of heaters (due to sorting). Space Complexity: O(1) as we are using constant extra space.
Solution
To solve the problem, we can follow these steps:
- Sort the array of houses and the array of heaters.
- For each house, use binary search to find the closest heater.
- Calculate the distance between the house and the closest heater to determine the required radius for that house.
- The answer will be the maximum of these distances, which will ensure all houses are covered.
The algorithm utilizes sorting and binary search for efficient lookup, making it suitable for large input sizes.