马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
本帖最后由 糖逗 于 2020-4-28 12:12 编辑
题目描述:给定 n 个非负整数表示每个宽度为 1 的柱子的高度图,计算按此排列的柱子,下雨之后能接多少雨水。
上面是由数组 [0,1,0,2,1,0,1,3,2,1,2,1] 表示的高度图,在这种情况下,可以接 6 个单位的雨水(蓝色部分表示雨水)。 感谢 Marcos 贡献此图。
示例:
输入: [0,1,0,2,1,0,1,3,2,1,2,1]
输出: 6
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/trapping-rain-water
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
int trap(vector<int>& height) {
int res = 0;
int len = height.size();
stack<int> temp;
for(int i = 0; i < len ; i++){
while(!temp.empty() && height[i] > height[temp.top()]){
int mid = temp.top();
temp.pop();
if(temp.empty())break;
int right = i;
int left = temp.top();
res += (i-left-1) * (min(height[left], height[right]) - height[mid]);
}
temp.push(i);
}
return res;
}
注意事项:
1.参考链接:https://leetcode-cn.com/problems ... i-wen-ti-by-sweeti/
https://leetcode-cn.com/problems ... n-water-by-ikaruga/ |