leetcode 84. 柱状图中最大的矩形

2023.8.30

         本题和接雨水 有点类似,依旧用双指针来解。但是本题要记录的是当前柱子 左右两侧第一个小于该柱子的索引。将其保存在两个数组中,最后再求最大面积。代码如下:

class Solution {
public:
    int largestRectangleArea(vector<int>& heights) {
        vector<int> min_left_index(heights.size()); //记录当前柱子 左侧第一个小于该柱子的索引
        vector<int> min_right_index(heights.size()); //记录当前柱子 右侧第一个小于该柱子的索引

        min_left_index[0] = -1;
        for(int i=1; i<heights.size(); i++)
        {
            int temp = i-1;
             while(temp>=0 && heights[temp]>=heights[i]) 
             {
                 temp = min_left_index[temp];
             }
             min_left_index[i] = temp;
        }

        min_right_index[heights.size()-1] = heights.size();
        for(int i=heights.size()-2; i>=0; i--)
        {
            int temp = i+1;
            while(temp<=heights.size()-1 && heights[temp]>=heights[i])
            {
                temp = min_right_index[temp];
            }
            min_right_index[i] = temp;
        }
        //求最大面积
        int ans = 0;
        for(int i=0; i<heights.size(); i++)
        {   
            ans = max(ans , heights[i]*(min_right_index[i]-min_left_index[i]-1));
        }
        return ans;
    }
};

2023.10.17

        二刷。同样的思路 ,java代码如下:

class Solution {
    public int largestRectangleArea(int[] heights) {
        int[] left = new int[heights.length];
        int[] right = new int[heights.length];
        //记录每个柱子 左侧第一个小于该柱子的 柱子索引
        left[0] = -1;
        for(int i=1; i<heights.length; i++){
            int temp = i-1;
            //不断向左寻找
            while(temp>=0 && heights[temp]>=heights[i]) temp = left[temp];
            left[i] = temp;
        }
        //记录每个柱子 右侧第一个小于该柱子的 柱子索引
        right[heights.length-1] = heights.length;
        for(int i=heights.length-2; i>=0; i--){
            int temp = i+1;
            while(temp<=heights.length-1 && heights[temp]>=heights[i]) temp = right[temp];
            right[i] = temp;
        }
        //计算最大面积
        int ans = 0;
        for(int i=0; i<heights.length; i++){
            ans = Math.max(ans , heights[i]*(right[i]-left[i]-1));
        }
        return ans;
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值