Skip to content

Latest commit

 

History

History
84 lines (58 loc) · 2.26 KB

2086-minimum-number-of-food-buckets-to-feed-the-hamsters.adoc

File metadata and controls

84 lines (58 loc) · 2.26 KB

2086. Minimum Number of Food Buckets to Feed the Hamsters

{leetcode}/problems/minimum-number-of-food-buckets-to-feed-the-hamsters/[LeetCode - 2086. Minimum Number of Food Buckets to Feed the Hamsters ^]

You are given a 0-indexed string hamsters where hamsters[i] is either:

  • 'H' indicating that there is a hamster at index i, or

  • '.' indicating that index i is empty.

You will add some number of food buckets at the empty indices in order to feed the hamsters. A hamster can be fed if there is at least one food bucket to its left or to its right. More formally, a hamster at index i can be fed if you place a food bucket at index i - 1 and/or at index i + 1.

Return the minimum number of food buckets you should place at empty indices to feed all the hamsters or _`-1` if it is impossible to feed all of them_.

Example 1: <img alt="" src="https://assets.leetcode.com/uploads/2022/11/01/example1.png" style="width: 482px; height: 162px;" />

Input: hamsters = "H..H"
Output: 2
Explanation: We place two food buckets at indices 1 and 2.
It can be shown that if we place only one food bucket, one of the hamsters will not be fed.

Example 2: <img alt="" src="https://assets.leetcode.com/uploads/2022/11/01/example2.png" style="width: 602px; height: 162px;" />

Input: hamsters = ".H.H."
Output: 1
Explanation: We place one food bucket at index 2.

Example 3: <img alt="" src="https://assets.leetcode.com/uploads/2022/11/01/example3.png" style="width: 602px; height: 162px;" />

Input: hamsters = ".HHH."
Output: -1
Explanation: If we place a food bucket at every empty index as shown, the hamster at index 2 will not be able to eat.

Constraints:

  • 1 ⇐ hamsters.length ⇐ 105

  • hamsters[i] is either’H'` or '.'.

思路分析

一刷
link:{sourcedir}/_2086_MinimumNumberOfFoodBucketsToFeedTheHamsters.java[role=include]

参考资料