zoukankan      html  css  js  c++  java
  • POJ2559——DP——Largest Rectangle in a Histogram

    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
    

    HINT

    Huge input, scanf is recommended.

    #include<cstdio>
    using namespace std;
    const int MAX = 1000000;
    int h[MAX],L[MAX],R[MAX];
    int stack[MAX];
    int n;
    void solve()
    {
      int n;
      int t = 0;
        for(int i = 0 ; i < n; ++i){
            while(t > 0 && h[stack[t-1]] >= h[i]) t--;
            L[i] = ( t == 0) ? 0: stack[t-1];
            stack[t++] = i;
        }
        t = 0;
        for(int i = n - 1 ; i >= 0 ;--i){
            while(t > 0 && h[stack[t-1]] >= h[i]) t--;
            R[i] = (t == 0) ? n : stack[t-1];
           stack[t++] = i;
        }
        long long max1 = 0;
       for(int i = 0 ; i < n ;i++){
          max1 = max(max1,(long long)h[i]*(R[i] - L[i] + 1));
       }
      printf("%lld
    ",max1);
    }
    int main()
    {
        while(~scanf("%d",&n)&&n){
            for(int i = 0 ; i < n; i++)
                scanf("%d",&h[i]);
            solve();
        }
        return 0;
    }
    View Code

    利用

    L[i] = (j <= i并且h[j-1] < h[i]的最大的j)

    R[i] = (j > i并且h[j] > h[i]的最小的j)

  • 相关阅读:
    Vue监视数据的原理
    JS 获取随机数
    Vue中的计算属性(computed)、方法(methods)、watch(侦听)
    Vue3中使用调试工具 Vue.js Devtools
    Vue3.X 新特性 Composition Api
    vue、js 保留小数点位数以及转化为百分比
    常用的网页布局之列表页
    CSS常见布局技巧
    2、C#入门第2课
    1、C#入门第一课
  • 原文地址:https://www.cnblogs.com/zero-begin/p/4418321.html
Copyright © 2011-2022 走看看