• 计算直方图中面积最大的矩形


    CSDN编程挑战里的题目

    给定直方图,每一小块的height由N个非负整数所确定,每一小块的width都为1,请找
    出直方图中面积最大的矩形。
    如下图所示,直方图中每一块的宽度都是1,每一块给定的高度分别是[2,1,5,6,2,3]:
    那么上述直方图中,面积最大的矩形便是下图所示的阴影部分的面积,面积= 10单位。
    请完成函数largestRectangleArea,实现寻找直方图中面积最大的矩形的功能,如当给
    定直方图各小块的高度= [2,1,5,6,2,3] ,返回10。

    这题挺容易的,可是我提交的程序反馈是有问题,又没给说具体的出错测试用例.而我自己测试的数据都没问题.懒得多想了.

     1 #include <cmath>
     2 #include <cstring>
     3 #include <cstdio>
     4 #include <cstdlib>
     5 
     6 int LargestRectangleArea(const int* histogramPtr, unsigned int histogramSize, unsigned int& start, unsigned int& end)
     7 {
     8     int minValue;
     9 
    10     int maxArea = 0;
    11     int area;
    12 
    13     for ( int i = 0; i < histogramSize; i++ )
    14     {
    15         minValue = histogramPtr[i];
    16         for ( int j = i; j < histogramSize; j++ )
    17         {
    18             if (histogramPtr[j] < minValue)
    19             {
    20                 minValue = histogramPtr[j];
    21             }
    22 
    23             area = (j - i + 1)*minValue;
    24             if (area > maxArea)
    25             {
    26                 start = i;
    27                 end = j;
    28                 maxArea = area;
    29             }
    30         }
    31     }
    32 
    33     return maxArea;
    34 }
  • 相关阅读:
    Min25 筛与 Powerful Numbers
    「CF576D」 Flights for Regular Customers
    「CF568C」 New Language
    「CF559E」 Gerald and Path
    「CF555E」 Case of Computer Network
    20210604
    20210603模拟赛总结
    20210602模拟赛总结
    CF603E 整体二分
    20210601模拟赛总结
  • 原文地址:https://www.cnblogs.com/WhyEngine/p/3520565.html
Copyright © 2020-2023  润新知