题目:

Given n non-negative integers representing the histogram's bar height where the width of each bar is 1, find the area of largest rectangle in the histogram.

Above is a histogram where width of each bar is 1, given height = [2,1,5,6,2,3].

The largest rectangle is shown in the shaded area, which has area = 10 unit.

题解:

  做编程题一定要自己AC了再去看discussion,之前一直草草的刷题,感觉忘得好快,尤其是边界条件的处理上一点长进也没有,这次hard题做了半个多小时,从开始看题到提交(提交了3次,都是小错误。。。太不细心了,这更加说明了白板编程的重要性,不要用IDE),完全自己码出来,以后会坚持这样做,否则去面试什么的肯定跪,也不利于思维逻辑能力的提高。

Solution 1 ()

  1. class Solution {
  2. public:
  3. int largestRectangleArea(vector<int> height) {
  4. if (height.empty()) return ;
  5. stack<int> high;
  6. int maxArea = ;
  7.  
  8. high.push();
  9. height.push_back();
  10. for (int i = ; i < height.size(); ++i) {
  11. while (!high.empty() && height[i] < height[high.top()]) {
  12. int index = high.top();
  13. high.pop();
  14. if (high.empty()) {
  15. maxArea = max((i - ) * height[index], maxArea);
  16. } else {
  17. maxArea = max((i - high.top() - ) * height[index], maxArea);
  18. }
  19. }
  20. high.push(i);
  21. }
  22.  
  23. return maxArea;
  24. }
  25. };

Solution 2 ()

  1. class Solution {
  2. public:
  3. int largestRectangleArea(vector<int> &height) {
  4. int ret = ;
  5. height.push_back();
  6. vector<int> index;
  7.  
  8. for(int i = ; i < height.size(); i++) {
  9. while(index.size() > && height[index.back()] >= height[i]) {
  10. int h = height[index.back()];
  11. index.pop_back();
  12.  
  13. int sidx = index.size() > ? index.back() : -;
  14. if(h * (i-sidx-) > ret)
  15. ret = h * (i-sidx-);
  16. }
  17. index.push_back(i);
  18. }
  19.  
  20. return ret;
  21. }
  22. };

  Diveide and Conquer 思想比较容易懂, 就是写起来的时候边界条件有点麻烦。

Solution 3 ()

  1. class Solution {
  2. int maxCombineArea(const vector<int> &height, int s, int m, int e) {
  3. // Expand from the middle to find the max area containing height[m] and height[m+1]
  4. int i = m, j = m+;
  5. int area = , h = min(height[i], height[j]);
  6. while(i >= s && j <= e) {
  7. h = min(h, min(height[i], height[j]));
  8. area = max(area, (j-i+) * h);
  9. if (i == s) {
  10. ++j;
  11. }
  12. else if (j == e) {
  13. --i;
  14. }
  15. else {
  16. // if both sides have not reached the boundary,
  17. // compare the outer bars and expand towards the bigger side
  18. if (height[i-] > height[j+]) {
  19. --i;
  20. }
  21. else {
  22. ++j;
  23. }
  24. }
  25. }
  26. return area;
  27. }
  28. int maxArea(const vector<int> &height, int s, int e) {
  29. // if the range only contains one bar, return its height as area
  30. if (s == e) {
  31. return height[s];
  32. }
  33. // otherwise, divide & conquer, the max area must be among the following 3 values
  34. int m = s + (e-s)/;
  35. // 1 - max area from left half
  36. int area = maxArea(height, s, m);
  37. // 2 - max area from right half
  38. area = max(area, maxArea(height, m+, e));
  39. // 3 - max area across the middle
  40. area = max(area, maxCombineArea(height, s, m, e));
  41. return area;
  42. }
  43. public:
  44. int largestRectangleArea(vector<int> &height) {
  45. if (height.empty()) {
  46. return ;
  47. }
  48. return maxArea(height, , height.size()-);
  49. }
  50. };

为什么下面的代码过不了???

  1. class Solution {
  2. public:
  3. int largestRectangleArea(vector<int> &height) {
  4. if (height.empty()) return ;
  5.  
  6. return maxArea(height, , height.size() - );
  7. }
  8.  
  9. int maxArea(vector<int> height, int begin, int end) {
  10. if (begin == end) {
  11. return height[begin];
  12. }
  13.  
  14. int mid = begin + (end - begin) / ;
  15. int mArea = maxArea(height, begin, mid);
  16. mArea = max(mArea, maxArea(height, mid + , end));
  17. mArea = max(mArea, maxCombineArea(height, begin, mid, end));
  18.  
  19. return mArea;
  20. }
  21. int maxCombineArea(vector<int> height, int begin, int mid, int end) {
  22. int maxArea = ;
  23. int left = mid, right = mid + ;
  24. int high = min(height[left], height[right]);
  25.  
  26. while (left >= begin && right <= end) {
  27. high = min(high, min(height[left], height[right]));
  28. maxArea = max(maxArea, (right - left + ) * high);
  29. if (left == begin) {
  30. ++right;
  31. } else if (right == end) {
  32. --left;
  33. } else {
  34. if (height[left - ] > height[right + ]) {
  35. --left;
  36. } else {
  37. ++right;
  38. }
  39. }
  40. }
  41.  
  42. return maxArea;
  43. }
  44. };

【Lintcode】122.Largest Rectangle in Histogram的更多相关文章

  1. 【LeetCode】84. Largest Rectangle in Histogram

    Largest Rectangle in Histogram Given n non-negative integers representing the histogram's bar height ...

  2. 【LeetCode】84. Largest Rectangle in Histogram 柱状图中最大的矩形(Python)

    作者: 负雪明烛 id: fuxuemingzhu 个人博客: http://fuxuemingzhu.cn/ 目录 题目描述 题目大意 解题方法 单调栈 日期 题目地址: https://leetc ...

  3. 【LeetCode】084. Largest Rectangle in Histogram

    题目: Given n non-negative integers representing the histogram's bar height where the width of each ba ...

  4. 【LeetCode】84. Largest Rectangle in Histogram——直方图最大面积

    Given n non-negative integers representing the histogram's bar height where the width of each bar is ...

  5. 【Leetcode】84. Largest Rectangle in Histogram 85. Maximal Rectangle

    问题描述: 84:直方图最大面积. 85:0,1矩阵最大全1子矩阵面积. 问题分析: 对于84,如果高度递增的话,那么OK没有问题,不断添加到栈里,最后一起算面积(当然,面积等于高度h * disPo ...

  6. 【一天一道LeetCode】#84. Largest Rectangle in Histogram

    一天一道LeetCode 本系列文章已全部上传至我的github,地址:ZeeCoder's Github 欢迎大家关注我的新浪微博,我的新浪微博 欢迎转载,转载请注明出处 (一)题目 Given n ...

  7. 【题解】hdu1506 Largest Rectangle in a Histogram

    目录 题目 思路 \(Code\) 题目 Largest Rectangle in a Histogram 思路 单调栈. 不知道怎么描述所以用样例讲一下. 7 2 1 4 5 1 3 3 最大矩形的 ...

  8. 【HDOJ】1506 Largest Rectangle in a Histogram

    Twitter还是Amazon拿这个题目当过面试题.DP区间求面积. /* 1506 */ #include <cstdio> #include <cstring> #incl ...

  9. Java for LeetCode 084 Largest Rectangle in Histogram【HARD】

    For example, Given height = [2,1,5,6,2,3], return 10. 解题思路: 参考Problem H: Largest Rectangle in a Hist ...

随机推荐

  1. 如何在DOS窗口中显示UTF-8字符

    在中文Windows系统中,如果一个文本文件是UTF-8编码的,那么在CMD.exe命令行窗口(所谓的DOS窗口)中不能正确显示文件中的内容.在默认情况下,命令行窗口中使用的代码页是中文或者美国的,即 ...

  2. Lua学习三----------Lua数据类型

    © 版权声明:本文为博主原创文章,转载请注明出处 Lua数据类型 - Lua是动态类型语言,不需要为变量定义类型,只需要为变量赋值 - Lua有8中基本数据类型:nil.boolean.number. ...

  3. 搭建私有Nuget仓库

    使用Nexus搭建私有Nuget仓库 https://www.cnblogs.com/Erik_Xu/p/9211471.html 前言 Nuget是ASP .NET Gallery的一员,是免费.开 ...

  4. WebStorm 常用功能

    WebStorm 常用功能的使用技巧分享 WebStorm 是 JetBrain 公司开发的一款 JavaScript IDE,使用非常方便,可以使编写代码过程更加流畅. 本文在这里分享一些常用功能的 ...

  5. 深入Asyncio(二)从线程到协程

    线程的真相 多线程并不是一无是处,在实际问题中,要权衡优劣势来选择多线程.多进程或是协程.协程为多线程的某些问题提供了一种解决方案,所以学习协程首先要对线程有一定了解. 多线程优点 代码可读性 多线程 ...

  6. Python中属性

    属性定义的两种方式: 1.num1=property(GetNum,SetNum)   class Pro(): def __init__(self): self._num= def GetNum(s ...

  7. 九度OJ 1170:找最小数 (最值)

    时间限制:1 秒 内存限制:32 兆 特殊判题:否 提交:6451 解决:2843 题目描述: 第一行输入一个数n,1 <= n <= 1000,下面输入n行数据,每一行有两个数,分别是x ...

  8. git config --system --unset credential.helper 重新输入账号密码

    检查本地配置$ git config --local -lcore.repositoryformatversion=0core.filemode=falsecore.bare=falsecore.lo ...

  9. 交易准实时预警 kafka topic 主题 异常交易主题 低延迟 event topic alert topic 内存 算法测试

    https://www.ibm.com/developerworks/cn/opensource/os-cn-kafka/index.html 周 明耀2015 年 6 月 10 日发布 示例:网络游 ...

  10. 通过主机名来获取一个ip对象

    //通过名称(ip字符串or主机名)来获取一个ip对象. InetAddress ip = InetAddress.getByName("www.baidu.com");//jav ...