19.2.22 [LeetCode 84] Largest Rectangle in Histogram

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.

Example:

Input: [2,1,5,6,2,3]
Output: 10

题意

找到直方图中最大的长方形

题解

首先是硬核暴力解法,当然很慢啦

 1 class Solution {
 2 public:
 3     int largestRectangleArea(vector<int>& heights) {
 4         int n = heights.size(), ans = 0;
 5         vector<int>dp(n, INT_MAX);
 6         for (int i = 1; i <= n; i++) {
 7             for (int j = 0; j <= n - i; j++) {
 8                 int e = i + j - 1;
 9                 if (i == 1)
10                     dp[j] = heights[j];
11                 else
12                     dp[j] = min(heights[e], dp[j]);
13                 ans = max(ans, i*dp[j]);
14             }
15         }
16         return ans;
17     }
18 };

换了一种也没好多少

 1 class Solution {
 2 public:
 3     int largestRectangleArea(vector<int>& heights) {
 4         int ans = 0, n = heights.size();
 5         for (int i = 0; i < n; i++) {
 6             int s = i, e = i, h = heights[i];
 7             while (s>=0 && heights[s] >= h)
 8                 s--;
 9             while (e<n && heights[e] >= h)
10                 e++;
11             ans = max(ans, (e - s - 1)*h);
12         }
13         return ans;
14     }
15 };

加个特判,还是不行,看来是根本上的思路有问题

 1 class Solution {
 2 public:
 3     int largestRectangleArea(vector<int>& heights) {
 4         int ans = 0, n = heights.size();
 5         for (int i = 0; i < n; i++) {
 6             int s = i, e = i, h = heights[i];
 7             if ((long)h*(long)n <= ans)continue;
 8             while (s>=0 && heights[s] >= h)
 9                 s--;
10             while (e<n && heights[e] >= h)
11                 e++;
12             ans = max(ans, (e - s - 1)*h);
13         }
14         return ans;
15     }
16 };

好吧……其实也没什么跳脱的思路,算是剪枝的思想,遍历数组,求以当前为右边界的最大矩形。剪枝剪掉的部分是:只算后面那根条比自己矮的那些位置的情况,因为不然只算后面那根条的情况就能包括当前算出来的最大矩形

 1 class Solution {
 2 public:
 3     int largestRectangleArea(vector<int>& heights) {
 4         int ans = 0, n = heights.size();
 5         for (int i = 0; i < n; i++) {
 6             if (i != n - 1 && heights[i] <= heights[i + 1])continue;
 7             int h = heights[i];
 8             for (int j = i; j >= 0; j--) {
 9                 h = min(h, heights[j]);
10                 ans = max(h*(i - j + 1), ans);
11             }
12         }
13         return ans;
14     }
15 };

原文地址:https://www.cnblogs.com/yalphait/p/10420782.html

时间: 2024-10-10 20:05:15

19.2.22 [LeetCode 84] Largest Rectangle in Histogram的相关文章

LeetCode 84 Largest Rectangle in Histogram (单调栈)

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

leetcode 84 Largest Rectangle in Histogram ----- java

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

[leetcode]84.Largest Rectangle in Histogram ,O(n)解法剖析

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

leetCode 84.Largest Rectangle in Histogram (最大矩形直方图) 解题思路和方法

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

[LeetCode OJ] Largest Rectangle in Histogram

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

C++]LeetCode: 133 Largest Rectangle in Histogram(最大矩形面积)

题目: 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 larg

84. Largest Rectangle in Histogram *HARD* 柱状图求最大面积 85. Maximal Rectangle *HARD*

1. 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 large

LeetCode OJ 84. Largest Rectangle in Histogram

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

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

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 r