{"id":27592,"date":"2018-04-04T19:32:54","date_gmt":"2018-04-04T14:02:54","guid":{"rendered":"https:\/\/www.wikitechy.com\/technology\/?p=27592"},"modified":"2018-04-04T19:32:54","modified_gmt":"2018-04-04T14:02:54","slug":"largest-rectangular-area-histogram-set-2","status":"publish","type":"post","link":"https:\/\/www.wikitechy.com\/technology\/largest-rectangular-area-histogram-set-2\/","title":{"rendered":"Largest Rectangular Area in a Histogram | Set 2"},"content":{"rendered":"<p>Find the largest rectangular area possible in a given histogram where the largest rectangle can be made of a number of contiguous bars. For simplicity, assume that all bars have same width and the width is 1 unit.<span id=\"more-116498\"><\/span><\/p>\n<p>For example, consider the following histogram with 7 bars of heights {6, 2, 5, 4, 5, 2, 6}. The largest possible rectangle possible is 12 (see the below figure, the max area rectangle is highlighted in red)<\/p>\n<p>We have discussed a Divide and Conquer based O(nLogn) solution for this problem. In this post, O(n) time solution is discussed. Like the previous post, width of all bars is assumed to be 1 for simplicity. For every bar \u2018x\u2019, we calculate the area with \u2018x\u2019 as the smallest bar in the rectangle. If we calculate such area for every bar \u2018x\u2019 and find the maximum of all areas, our task is done. How to calculate area with \u2018x\u2019 as smallest bar? We need to know index of the first smaller (smaller than \u2018x\u2019) bar on left of \u2018x\u2019 and index of first smaller bar on right of \u2018x\u2019. Let us call these indexes as \u2018left index\u2019 and \u2018right index\u2019 respectively.<br \/>\nWe traverse all bars from left to right, maintain a stack of bars. Every bar is pushed to stack once. A bar is popped from stack when a bar of smaller height is seen. When a bar is popped, we calculate the area with the popped bar as smallest bar. How do we get left and right indexes of the popped bar \u2013 the current index tells us the \u2018right index\u2019 and index of previous item in stack is the \u2018left index\u2019. Following is the complete algorithm.<\/p>\n<p><strong>1) <\/strong>Create an empty stack.<\/p>\n<p><strong>2) <\/strong>Start from first bar, and do following for every bar \u2018hist[i]\u2019 where \u2018i\u2019 varies from 0 to n-1.<br \/>\n\u2026\u2026<strong>a)<\/strong> If stack is empty or hist[i] is higher than the bar at top of stack, then push \u2018i\u2019 to stack.<br \/>\n\u2026\u2026<strong>b)<\/strong> If this bar is smaller than the top of stack, then keep removing the top of stack while top of the stack is greater. Let the removed bar be hist[tp]. Calculate area of rectangle with hist[tp] as smallest bar. For hist[tp], the \u2018left index\u2019 is previous (previous to tp) item in stack and \u2018right index\u2019 is \u2018i\u2019 (current index).<\/p>\n<p><strong>3)<\/strong> If the stack is not empty, then one by one remove all bars from stack and do step 2.b for every removed bar.<\/p>\n<p>Following is C++ implementation of the above algorithm.<\/p>\n<p><strong>C++ Programming:<\/strong><\/p>\n<div class=\"code-embed-wrapper\"> <div class=\"code-embed-infos\"> <\/div> <pre class=\"language-cpp code-embed-pre line-numbers\"  data-start=\"1\" data-line-offset=\"0\"><code class=\"language-cpp code-embed-code\">\/\/ C++ program to find maximum rectangular area in linear time<br\/>#include&lt;iostream&gt;<br\/>#include&lt;stack&gt;<br\/>using namespace std;<br\/> <br\/>\/\/ The main function to find the maximum rectangular area under given<br\/>\/\/ histogram with n bars<br\/>int getMaxArea(int hist[], int n)<br\/>{<br\/>    \/\/ Create an empty stack. The stack holds indexes of hist[] array<br\/>    \/\/ The bars stored in stack are always in increasing order of their<br\/>    \/\/ heights.<br\/>    stack&lt;int&gt; s;<br\/> <br\/>    int max_area = 0; \/\/ Initalize max area<br\/>    int tp;  \/\/ To store top of stack<br\/>    int area_with_top; \/\/ To store area with top bar as the smallest bar<br\/> <br\/>    \/\/ Run through all bars of given histogram<br\/>    int i = 0;<br\/>    while (i &lt; n)<br\/>    {<br\/>        \/\/ If this bar is higher than the bar on top stack, push it to stack<br\/>        if (s.empty() || hist[s.top()] &lt;= hist[i])<br\/>            s.push(i++);<br\/> <br\/>        \/\/ If this bar is lower than top of stack, then calculate area of rectangle <br\/>        \/\/ with stack top as the smallest (or minimum height) bar. &#039;i&#039; is <br\/>        \/\/ &#039;right index&#039; for the top and element before top in stack is &#039;left index&#039;<br\/>        else<br\/>        {<br\/>            tp = s.top();  \/\/ store the top index<br\/>            s.pop();  \/\/ pop the top<br\/> <br\/>            \/\/ Calculate the area with hist[tp] stack as smallest bar<br\/>            area_with_top = hist[tp] * (s.empty() ? i : i - s.top() - 1);<br\/> <br\/>            \/\/ update max area, if needed<br\/>            if (max_area &lt; area_with_top)<br\/>                max_area = area_with_top;<br\/>        }<br\/>    }<br\/> <br\/>    \/\/ Now pop the remaining bars from stack and calculate area with every<br\/>    \/\/ popped bar as the smallest bar<br\/>    while (s.empty() == false)<br\/>    {<br\/>        tp = s.top();<br\/>        s.pop();<br\/>        area_with_top = hist[tp] * (s.empty() ? i : i - s.top() - 1);<br\/> <br\/>        if (max_area &lt; area_with_top)<br\/>            max_area = area_with_top;<br\/>    }<br\/> <br\/>    return max_area;<br\/>}<br\/> <br\/>\/\/ Driver program to test above function<br\/>int main()<br\/>{<br\/>    int hist[] = {6, 2, 5, 4, 5, 1, 6};<br\/>    int n = sizeof(hist)\/sizeof(hist[0]);<br\/>    cout &lt;&lt; &quot;Maximum area is &quot; &lt;&lt; getMaxArea(hist, n);<br\/>    return 0;<br\/>}<\/code><\/pre> <\/div>\n<p><strong>Output:<\/strong><\/p>\n<pre>Maximum area is 12<\/pre>\n<p><strong>Time Complexity: <\/strong>Since every bar is pushed and popped only once, the time complexity of this method is O(n).<\/p>\n","protected":false},"excerpt":{"rendered":"<p> Largest Rectangular Area in a Histogram | Set 2 &#8211; Stack &#8211; Find the largest rectangular area possible in a given histogram where the largest rectangle<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[73012,79607],"tags":[81785,81782,81788,81784,81781,81787,81783,81789,81790,81786,81780],"class_list":["post-27592","post","type-post","status-publish","format-standard","hentry","category-data-structures","category-stack","tag-largest-rectangle-hackerrank-solution","tag-largest-rectangle-in-histogram-algorithm","tag-largest-rectangle-in-histogram-divide-and-conquer","tag-largest-rectangle-in-histogram-leetcode-c","tag-largest-rectangle-in-histogram-python","tag-largest-rectangular-area-in-a-histogram","tag-largest-rectangular-area-in-a-histogram-divide-and-conquer","tag-largest-rectangular-area-in-a-histogram-leetcode","tag-max-rectangle-in-binary-matrix","tag-maximum-histogram-area-leetcode","tag-maximum-rectangular-area-in-a-matrix"],"_links":{"self":[{"href":"https:\/\/www.wikitechy.com\/technology\/wp-json\/wp\/v2\/posts\/27592","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.wikitechy.com\/technology\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.wikitechy.com\/technology\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.wikitechy.com\/technology\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.wikitechy.com\/technology\/wp-json\/wp\/v2\/comments?post=27592"}],"version-history":[{"count":0,"href":"https:\/\/www.wikitechy.com\/technology\/wp-json\/wp\/v2\/posts\/27592\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.wikitechy.com\/technology\/wp-json\/wp\/v2\/media?parent=27592"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.wikitechy.com\/technology\/wp-json\/wp\/v2\/categories?post=27592"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.wikitechy.com\/technology\/wp-json\/wp\/v2\/tags?post=27592"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}