博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Largest Rectangle in a Histogram(hdu1506,单调栈裸题)
阅读量:5171 次
发布时间:2019-06-13

本文共 3712 字,大约阅读时间需要 12 分钟。

Largest Rectangle in a Histogram

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)

Total Submission(s): 22968    Accepted Submission(s): 7175

Problem Description
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.
 

 

Input
The 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.
 

 

Output
For 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
 

 

Source
 

 

Recommend
LL   |   We have carefully selected several similar problems for you:            
 

思路:

感觉太裸了点

还是单调栈,这回是个单调递增栈

因为如果以当前这个高度作为矩形的高度的话后面的矩形高度必须比他高

否则就不成立

那么我们维护一个单调递增栈

当他需要被弹出时,则说明以该高度为高的矩形走不下去了

那么我们就可以记下端点

记得正反跑两遍

最后用(右端点-左端点+1)*高度就是当前矩形面积

取max即可

(别忘了开long long)

代码:

#include
#include
#include
#include
#define rii register int i#define rij register int j#define int long longusing namespace std;int l[100005],r[100005],h[100005],n,cnt,stack[100005];signed main(){ while(~scanf("%lld",&n)) { if(n==0) { break; } for(rii=1;i<=n;i++) { scanf("%lld",&h[i]); } cnt=0; for(rii=1;i<=n;i++) { if(cnt==0) { cnt++; stack[cnt]=i; continue; } if(h[stack[cnt]]<=h[i]) { cnt++; stack[cnt]=i; } else { while(h[stack[cnt]]>h[i]) { r[stack[cnt]]=i-1; cnt--; } cnt++; stack[cnt]=i; } } while(cnt!=0) { r[stack[cnt]]=n; cnt--; } for(rii=n;i>=1;i--) { if(cnt==0) { cnt++; stack[cnt]=i; continue; } if(h[stack[cnt]]<=h[i]) { cnt++; stack[cnt]=i; } else { while(h[stack[cnt]]>h[i]) { l[stack[cnt]]=i+1; cnt--; } cnt++; stack[cnt]=i; } } while(cnt!=0) { l[stack[cnt]]=1; cnt--; } int ans=0; for(rii=1;i<=n;i++) { ans=max(ans,(r[i]-l[i]+1)*h[i]); } printf("%lld\n",ans); }}

 

转载于:https://www.cnblogs.com/ztz11/p/9699712.html

你可能感兴趣的文章
用友CDM系统“货位间商品移库单(一步)”表体增加“货位可用数量”字段,根据表头的选择的货位自动带出数值...
查看>>
HTTP协议--请求与响应
查看>>
洛谷P2280 [HNOI2003] 激光炸弹 [前缀和]
查看>>
POJ2104 K-th Number [整体二分]
查看>>
include/autoconfig.mk
查看>>
iMX6QD How to Add 24-bit LVDS Support in Android
查看>>
Powershell About Active Directory Server
查看>>
用maven编译spark2.1.0
查看>>
打印机共享错误
查看>>
Facebook回应追踪无账号用户:源于网站插件漏洞
查看>>
C# Invoke 使用 异步委托
查看>>
远程工作两个月的体会(转)
查看>>
实现手机上的数据库
查看>>
软件公司项目经理岗位职责
查看>>
Mac下使用gitHub
查看>>
Python 持久存储
查看>>
python 爬虫 (错误很多)
查看>>
16 数值的整数次方 (第3章 高质量的代码-代码的完整性)
查看>>
C#之玩转反射
查看>>
“adb server is out of date.
查看>>