mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-10 18:48:13 +08:00
31 lines
1003 B
HTML
31 lines
1003 B
HTML
<p>给定 <code>n</code> 个非负整数表示每个宽度为 <code>1</code> 的柱子的高度图,计算按此排列的柱子,下雨之后能接多少雨水。</p>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>示例 1:</strong></p>
|
||
|
||
<p><img src="https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2018/10/22/rainwatertrap.png" style="height: 161px; width: 412px;" /></p>
|
||
|
||
<pre>
|
||
<strong>输入:</strong>height = [0,1,0,2,1,0,1,3,2,1,2,1]
|
||
<strong>输出:</strong>6
|
||
<strong>解释:</strong>上面是由数组 [0,1,0,2,1,0,1,3,2,1,2,1] 表示的高度图,在这种情况下,可以接 6 个单位的雨水(蓝色部分表示雨水)。
|
||
</pre>
|
||
|
||
<p><strong>示例 2:</strong></p>
|
||
|
||
<pre>
|
||
<strong>输入:</strong>height = [4,2,0,3,2,5]
|
||
<strong>输出:</strong>9
|
||
</pre>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>提示:</strong></p>
|
||
|
||
<ul>
|
||
<li><code>n == height.length</code></li>
|
||
<li><code>1 <= n <= 2 * 10<sup>4</sup></code></li>
|
||
<li><code>0 <= height[i] <= 10<sup>5</sup></code></li>
|
||
</ul>
|