码迷,mamicode.com
首页 > 其他好文 > 详细

HDU 1506 Largest Rectangle in a Histogram

时间:2014-09-27 00:56:38      阅读:528      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   color   io   os   ar   java   

Largest Rectangle in a Histogram

Time Limit: 1000ms
Memory Limit: 32768KB
This problem will be judged on HDU. Original ID: 1506
64-bit integer IO format: %I64d      Java class name: Main
 
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:
bubuko.com,布布扣
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

 
解题:单调队列的维护。。。
 
bubuko.com,布布扣
 1 #include <iostream>
 2 #include <cstdio>
 3 #include <cstring>
 4 #include <cmath>
 5 #include <algorithm>
 6 #include <climits>
 7 #include <vector>
 8 #include <queue>
 9 #include <cstdlib>
10 #include <string>
11 #include <set>
12 #include <stack>
13 #define LL long long
14 #define pii pair<int,int>
15 #define INF 0x3f3f3f3f
16 using namespace std;
17 const int maxn = 100010;
18 int q[maxn] = {-1},w[maxn],tp,n,h;//w记录前面比自己大的元素个数
19 LL ans;
20 int main(){
21     while(scanf("%d",&n),n){
22         ans = tp = 0;
23         for(int i = 0; i <= n; i++){
24             if(i == n) h = 0;
25             else scanf("%d",&h);
26             if(h > q[tp]){
27                 q[++tp] = h;
28                 w[tp] = 1;
29             }else{
30                 LL cnt = 0;
31                 while(h <= q[tp]){
32                     ans = max(ans,(cnt+w[tp])*q[tp]);//每次找q中下降的
33                     cnt += w[tp--];
34                 }
35                 q[++tp] = h;
36                 w[tp] = ++cnt;//算上自己
37             }
38         }
39         printf("%I64d\n",ans);
40     }
41     return 0;
42 }
View Code

 

HDU 1506 Largest Rectangle in a Histogram

标签:des   style   blog   http   color   io   os   ar   java   

原文地址:http://www.cnblogs.com/crackpotisback/p/3995605.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!