Description
Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it is able to trap after raining.

The above elevation map is represented by array [0,1,0,2,1,0,1,3,2,1,2,1]. In this case, 6 units of rain water (blue section) are being trapped. Thanks Marcos for contributing this image!
Example:
1 | Input: [0,1,0,2,1,0,1,3,2,1,2,1] |
Difficulty: Hard
Code:
1 | class Solution { |
题意
收集雨水,给定n个非负整数代表宽为1不同高度柱子的容器,求它能收集多少雨水。