mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-10 18:48:13 +08:00
66 lines
2.4 KiB
HTML
66 lines
2.4 KiB
HTML
<p>给你一个下标从 <strong>0</strong> 开始的字符串 <code>street</code> 。<code>street</code> 中每个字符要么是表示房屋的 <code>'H'</code> ,要么是表示空位的 <code>'.'</code> 。</p>
|
||
|
||
<p>你可以在 <strong>空位</strong> 放置水桶,从相邻的房屋收集雨水。位置在 <code>i - 1</code> <strong>或者</strong> <code>i + 1</code> 的水桶可以收集位置为 <code>i</code> 处房屋的雨水。一个水桶如果相邻两个位置都有房屋,那么它可以收集 <strong>两个</strong> 房屋的雨水。</p>
|
||
|
||
<p>在确保 <strong>每个</strong> 房屋旁边都 <strong>至少</strong> 有一个水桶的前提下,请你返回需要的 <strong>最少</strong> 水桶数。如果无解请返回 <code>-1</code> 。</p>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>示例 1:</strong></p>
|
||
|
||
<pre><b>输入:</b>street = "H..H"
|
||
<b>输出:</b>2
|
||
<strong>解释:</strong>
|
||
我们可以在下标为 1 和 2 处放水桶。
|
||
"H..H" -> "HBBH"('B' 表示放置水桶)。
|
||
下标为 0 处的房屋右边有水桶,下标为 3 处的房屋左边有水桶。
|
||
所以每个房屋旁边都至少有一个水桶收集雨水。
|
||
</pre>
|
||
|
||
<p><strong>示例 2:</strong></p>
|
||
|
||
<pre><b>输入:</b>street = ".H.H."
|
||
<b>输出:</b>1
|
||
<strong>解释:</strong>
|
||
我们可以在下标为 2 处放置一个水桶。
|
||
".H.H." -> ".HBH."('B' 表示放置水桶)。
|
||
下标为 1 处的房屋右边有水桶,下标为 3 处的房屋左边有水桶。
|
||
所以每个房屋旁边都至少有一个水桶收集雨水。
|
||
</pre>
|
||
|
||
<p><strong>示例 3:</strong></p>
|
||
|
||
<pre><b>输入:</b>street = ".HHH."
|
||
<b>输出:</b>-1
|
||
<strong>解释:</strong>
|
||
没有空位可以放置水桶收集下标为 2 处的雨水。
|
||
所以没有办法收集所有房屋的雨水。
|
||
</pre>
|
||
|
||
<p><strong>示例 4:</strong></p>
|
||
|
||
<pre><b>输入:</b>street = "H"
|
||
<b>输出:</b>-1
|
||
<strong>解释:</strong>
|
||
没有空位放置水桶。
|
||
所以没有办法收集所有房屋的雨水。
|
||
</pre>
|
||
|
||
<p><strong>示例 5:</strong></p>
|
||
|
||
<pre><b>输入:</b>street = "."
|
||
<b>输出:</b>0
|
||
<strong>解释:</strong>
|
||
没有房屋需要收集雨水。
|
||
所以需要 0 个水桶。
|
||
</pre>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>提示:</strong></p>
|
||
|
||
<ul>
|
||
<li><code>1 <= street.length <= 10<sup>5</sup></code></li>
|
||
<li><code>street[i]</code> 要么是 <code>'H'</code> ,要么是 <code>'.'</code> 。</li>
|
||
</ul>
|