Largest Rectangle in a Histogram【暑期培训Q题】【DP】【递归】

本文介绍了一种高效算法,用于解决计算直方图中最大矩形面积的问题。通过左右极限的概念,有效地减少了计算复杂度。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

        这个时候距离AK还差一道题,并且还是那么的巧,刚好要写一道拿了一血的题。

A histogram is a polygon composed of a sequence of rectangles aligned at a common base line. The rectangles have equal widths but may have different heights. For example, the figure on the left shows the histogram that consists of rectangles with the heights 2, 1, 4, 5, 1, 3, 3, measured in units where 1 is the width of the rectangles: 
 
Usually, histograms are used to represent discrete distributions, e.g., the frequencies of characters in texts. Note that the order of the rectangles, i.e., their heights, is important. Calculate the area of the largest rectangle in a histogram that is aligned at the common base line, too. The figure on the right shows the largest aligned rectangle for the depicted histogram.
InputThe input contains several test cases. Each test case describes a histogram and starts with an integer n, denoting the number of rectangles it is composed of. You may assume that 1 <= n <= 100000. Then follow n integers h1, ..., hn, where 0 <= hi <= 1000000000. These numbers denote the heights of the rectangles of the histogram in left-to-right order. The width of each rectangle is 1. A zero follows the input for the last test case.OutputFor each test case output on a single line the area of the largest rectangle in the specified histogram. Remember that this rectangle must be aligned at the common base line.Sample Input
7 2 1 4 5 1 3 3
4 1000 1000 1000 1000
0
Sample Output
8
4000

        思路:这道题的题意是要我们求图上所能构成的最大矩形面积,我们知道矩形的面积无非就是长乘宽,我们对于所要求的点能构成的最大面积,无过是要求出它左右能走到的比它大的极限而已。但这里我们还需要些操作,也就是防止这道题被T的主要操作了:

        重点:我们对于每一个点都要求出它的左右极限然后进行计算面积操作,那么我通过将求出这个点的左极限的方式,同理可以求出右极限。

        对于左极限L的求法,我们从第1个数一直去求到n(两个端点),对于1这样的没有左极限的,那么它的左极限就是它本身,加下来看2,我们拿它和1比较,决定了它的左极限L是它本身还是1......接下来对于第i个点,我们求它的左极限L,先拿它和它左边的那个数比较,如果比它大或者等于它,那么我们首先就可以把i的左极限推到了i-1的左极限L[i-1]这个点了,那么我们此时是否要结束判断?——这取决于L[i-1]-1这个点了,为什么呢?因为既然i这个点小于等于i-1点的高度,那么i-1这个点的左极限能被i继承,但是若是i-1这个点比i高,那么这就是个“充分不必要”条件了,我们此时并不能确定L[i-1]-1这个点的高度是否比i高,所以一一判断,这样,我们就可以推出了一则有用的公式:

            while(l[i]>0&&a[l[i]-1]>=a[i])

            {

                l[i]=l[l[i]-1];

            }


        同理,我们可以用类似的方法求出每个点的右极限

完整代码:

#include <iostream>
#include <cstdio>
#include <algorithm>
using namespace std;
typedef long long ll;
int n;
int a[100005];
int l[100005],r[100005];        //左右分别为该点上大于等于该点高度的柱子的端点
int main()
{
    while(scanf("%d",&n)&&n)
    {
        ll ans=0;
        memset(a, 0, sizeof(a));
        for(int i=0; i<n; i++)
        {
            scanf("%d",&a[i]);
            l[i]=r[i]=i;
            while(l[i]>0&&a[l[i]-1]>=a[i])
            {
                l[i]=l[l[i]-1];
            }
        }
        for(int i=n-1; i>=0; i--)
        {
            while(r[i]<n-1&&a[r[i]+1]>=a[i])
            {
                r[i]=r[r[i]+1];
            }
        }
        for(int i=0; i<n; i++)
        {
            ll s=(ll)a[i]*(r[i]-l[i]+1);
            if(s>ans)
            {
                ans=s;
            }
        }
        printf("%lld\n",ans);
    }
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Wuliwuliii

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值