Problem
You are given a 0-indexed string street
. Each character in street
is either 'H'
representing a house or '.'
representing an empty space.
You can place buckets on the empty spaces to collect rainwater that falls from the adjacent houses. The rainwater from a house at index i
is collected if a bucket is placed at index i - 1
and/or index i + 1
. A single bucket, if placed adjacent to two houses, can collect the rainwater from both houses.
Return **the **minimum **number of buckets needed so that for *every* house, there is at least one bucket collecting rainwater from it, or -1
if it is impossible.**
Example 1:
Input: street = "H..H"
Output: 2
Explanation:
We can put buckets at index 1 and index 2.
"H..H" -> "HBBH" ('B' denotes where a bucket is placed).
The house at index 0 has a bucket to its right, and the house at index 3 has a bucket to its left.
Thus, for every house, there is at least one bucket collecting rainwater from it.
Example 2:
Input: street = ".H.H."
Output: 1
Explanation:
We can put a bucket at index 2.
".H.H." -> ".HBH." ('B' denotes where a bucket is placed).
The house at index 1 has a bucket to its right, and the house at index 3 has a bucket to its left.
Thus, for every house, there is at least one bucket collecting rainwater from it.
Example 3:
Input: street = ".HHH."
Output: -1
Explanation:
There is no empty space to place a bucket to collect the rainwater from the house at index 2.
Thus, it is impossible to collect the rainwater from all the houses.
Constraints:
1 <= street.length <= 10^5
street[i]
is either'H'
or'.'
.
Solution (Java)
class Solution {
public int minimumBuckets(String street) {
// check if houses have space in between or not
// eg:".HHH."
// array formation
char[] arr = street.toCharArray();
for (int i = 0; i < arr.length; i++) {
if (arr[i] == '.') {
continue;
}
if (i + 1 < arr.length && arr[i + 1] == '.') {
continue;
}
// H is present before curr character
if (i - 1 >= 0 && arr[i - 1] == '.') {
continue;
}
return -1;
}
int x = 0;
for (int j = 0; j < arr.length; j++) {
// point move next we only take care of H
if (arr[j] == 'H') {
if (j - 1 >= 0 && arr[j - 1] == 'X') {
continue;
}
if (j + 1 < arr.length && arr[j + 1] == '.') {
arr[j + 1] = 'X';
} else {
arr[j - 1] = 'X';
}
x++;
}
}
return x;
}
}
Explain:
nope.
Complexity:
- Time complexity : O(n).
- Space complexity : O(n).