31. Minimum Number of Taps to Open to Water a Garden
The problem can be found at the following link: Question Link
My Approach
This is a question on greedy approch, as we have given how to find the range of the given taps . We can calculate the range of each tap and check if we can manage to find a tap which have largest current range. we can do it as :
Initialize variables:
minRange
andmaxRange
to keep track of the minimum and maximum positions that can be covered by the currently selected taps (both initially set to 0).taps
to keep track of the number of taps used (initialized to 0).curindex
to keep track of the index of the last selected tap (initialized to 0).
Create a while loop that continues until
maxRange
is greater than or equal ton
. This loop is used to extend the covered range step by step.Inside the while loop, iterate through the taps (represented by the
ranges
vector) starting from thecurindex
. For each tapi
:Check if the tap can cover the current position (
i - ranges[i]
) and if it can extend the range further (i + ranges[i] > maxRange
).If both conditions are met, update
maxRange
toi + ranges[i]
and updatecurindex
toi
. This tap is chosen as it extends the maximum coverage.
After examining all taps within the current range, if
minRange
is equal tomaxRange
, it means that no tap can be selected to extend the coverage further. In this case, return -1 to indicate that it's impossible to cover the entire range.Increment
taps
to count the tap that has been used to extend the coverage.Update
minRange
tomaxRange
to indicate that the current range has been fully covered.Repeat steps 3-6 until
maxRange
is greater than or equal ton
.
Time and Auxiliary Space Complexity
Time Complexity:
O(n)
Auxiliary Space Complexity:
O(1)
because we used an extra queue..
Code (C++)
Contribution and Support
For discussions, questions, or doubts related to this solution, please visit our discussion section. We welcome your input and aim to foster a collaborative learning environment.
If you find this solution helpful, consider supporting us by giving a ⭐ star
to the rishabhv12/Daily-Leetcode-Solution repository.
Last updated