zoukankan      html  css  js  c++  java
  • HDU 1506 Largest Rectangle in a Histogram

    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:

    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

     
    解题:单调队列的维护。。。
     
     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
    ",ans);
    40     }
    41     return 0;
    42 }
    View Code
  • 相关阅读:
    Kmp 加深理解 之 poj 3461
    Kmp 模板 之 hdu 1711 Number Sequence
    最大连续子序列和(经典DP) 之 hdu 1231 最大连续子序列
    数学 之 hdu 4710 Balls Rearrangement
    01背包变形 之 hdu 2126 Buy the souvenirs
    逆序数 之 hdu 1394 Minimum Inversion Number
    根据进程文件id查看所有进程信息
    N皇后问题
    17. 电话号码的字母组合
    697. 数组的度
  • 原文地址:https://www.cnblogs.com/crackpotisback/p/3995605.html
Copyright © 2011-2022 走看看