接雨水
只是使用了单调栈的方法来做。
其中计算雨水面积要横向计算,不能只看某一个竖列(我就卡在了这一步,因此没有做出来)。
int trap(vector<int>& height) {int middle;int result = 0;stack<int> st;st.push(0);for(int i = 1; i < height.size(); i++){if(height[i] <= height[st.top()]){st.push(i);}else{while(!st.empty() && height[i] > height[st.top()]){middle = st.top();st.pop();if(!st.empty())result += (min(height[st.top()], height[i]) - height[middle]) * (i - st.top() - 1);}st.push(i);}}return result;}
计算矩形面积
和上一题相反,上一题是求凹槽面积,这一题是求凸出来的面积。
int largestRectangleArea(vector<int>& heights) {heights.push_back(0);heights.insert(heights.begin(), 0);int result = 0;stack<int> st;st.push(0);for(int i = 1;i < heights.size(); i++){if(heights[i] >= heights[st.top()]){st.push(i);}else{while(!st.empty() && heights[i] < heights[st.top()]){int mid = st.top();st.pop();if(!st.empty())result = max((i - st.top() - 1) * heights[mid], result);}st.push(i);}}return result;}