LARGEST RECTANGLE IN HISTOGRAM - Leetcode 84 - Python

  Рет қаралды 200,386

NeetCode

NeetCode

Күн бұрын

🚀 neetcode.io/ - A better way to prepare for Coding Interviews
🐦 Twitter: / neetcode1
🥷 Discord: / discord
🐮 Support the channel: / neetcode
Coding Solutions: • Coding Interview Solut...
Problem Link: neetcode.io/problems/largest-...
0:00 - Intuition
5:44 - Conceptual Algorithm
13:58 - Coding optimal solution
#Coding #Programming #CodingInterview
Disclosure: Some of the links above may be affiliate links, from which I may earn a small commission.

Пікірлер: 205
@NeetCode
@NeetCode 4 жыл бұрын
🚀 neetcode.io/ - I created a FREE site to make interview prep a lot easier, hope it helps! ❤
@xingdi986
@xingdi986 3 жыл бұрын
Even with the video, this problem is still hard for me to understand and solve. but, anyway, thanks for explaining
@Chansd5
@Chansd5 2 жыл бұрын
Samesies.
@harpercfc_
@harpercfc_ 2 жыл бұрын
feel a little bit relieved seeing your comment :( it is so hard
@chaoluncai4300
@chaoluncai4300 Жыл бұрын
its also me for the first time touching the concept of mono stack. For those who's also struggling to interpret mono-stack thoroughly for the 1st time, I recommend just move on to BFS/DFS, DP, hard array problems etc. and come back to this once you are comfortable with those other skills. Then you'll notice the way you see mono-stack is much more clear and different, trust me:))
@carl_84
@carl_84 Жыл бұрын
It is hard. If they ask me this on an interview, I doubt I'll come up with this eficient solution 😅😅😅 Maybe with a lot of hints!
@Mustafa-099
@Mustafa-099 Жыл бұрын
Hey folks, I usually take notes by flagging the solution at various points for these kinds of problems and I will share them below, hope it helps Solution: class Solution: def largestRectangleArea(self, heights: List[int]) -> int: maxArea = 0 stack = [ ] # pairs of index as well as heights for i, h in enumerate(heights): start = i # originally the start will be the current index of the height while stack and stack[-1][1] > h: index, height = stack.pop() maxArea = max( maxArea, height*( i-index )) # Note 1 start = index # Note 2 stack.append( (start, h) ) # Note 3 for i, h in stack: maxArea = max( maxArea, h * ( len(heights) - i )) # Note 4 return maxArea Notes: For this problem we need to create a stack where we keep track of the heights as they appear along with their indexes Intuition: There can be multiple possible bars that can be formed in the histogram by combining them together. To find the bar that has the largest area possible we need to find the bars that can extend vertically and horizontally as far as possible. Some bars have the limitations on either sides so they cannot be extended horizontally, if they have bars that are shorter than them on either side, this will prevent them from having area beyond the shorter bars ( horizontally ) Algorithm: We use the enumerate function to traverse through the heights array, it will give us the index ( which will be used for calculating the width of the bar ) as well as the corresponding heights The " start " variable keeps track of the index where the bar's width will be At first the stack will be empty so we will append the values of " start " variable and current height in the stack However for each iteration in the while loop we will check whether our stack contains anything, if it does then we will retrieve the value on the top of our stack and check if the height is greater than the current, if it is then we will pop that element from the stack and retrieve the index as well as the height that was stored in the stack Now using these values of index, height we will calculate the area Note 1: ( i - index ) The reason we do this is for calculating width is because the current height ( ith height ) we are at is less than the one that was stored in the stack. This means that the height that was stored in the stack cannot extend on the right side any more ( because the height of the bar on it's right side is lower than itself ) The " index " is essentially the starting point of the bar whose values we popped from the stack The difference between the two will give us the width of the bar Note 2: We update the start variable to the index because the current bar being shorter than the previous means we can extend it to the left side Note 3: We append the two values in the stack, " start " and the height " start " is essentially the index from where the width of the bar can be calculated Note 4: We need to calculate the areas of the bars which are left in the stack The width of these bars is calculated by subtracting the index where their width starts from the total length We use total length because the shorter bars are essentially the ones that are able to extend on both sides because they are surrounded by bars that are longer than them
@abhilashpadmanabhan6096
@abhilashpadmanabhan6096 2 жыл бұрын
Dude's awesome as he always is! Just a suggestion, if we add a dummy [0] to the right of heights, the extra handling for right boundary can be avoided. I tried that and got accepted. :)
@carl_84
@carl_84 Жыл бұрын
This is done in Elements of Programming Interviews in Python book.
@kobebyrant9483
@kobebyrant9483 Жыл бұрын
to be honest, I found solution in the video is more intuitive and easier to understand
@pl5778
@pl5778 Жыл бұрын
this is awesome. I don't know how someone can come up with the solution in an interview for the first time.
@B3TheBand
@B3TheBand 6 ай бұрын
I came up with a solution by building a rectangle from each index, going left until you reach a smaller value and right until you reach a smaller value. The rectangle is the sum of those two, minus the current rectangle height (because you counted it twice, once going left and once going right). For an array where every value is the same, this is O(n^2), so it timed out! I think an interviewer would accept it anyway though.
@eloinpuga
@eloinpuga 4 ай бұрын
Either you have lot's of experience with similar problems, or you already solved this one. Sometimes I have to accept that I am not a genious that comes up with solutions like this on the spot, let alone being a jr, but with enough time problems become repetitive and with that experience I might come up with that solution one day.
@B3TheBand
@B3TheBand 4 ай бұрын
@@eloinpuga It comes with practice. You can't assume that just because a solution seems new to you now, that it's not a standard algorithm or approach.
@gorgolyt
@gorgolyt 3 ай бұрын
@@B3TheBand Coming up with an O(n2) brute force solution is easy. Sorry but if you think the interviewer is not interested in finding the O(n) solution then you're kind of missing the point.
@B3TheBand
@B3TheBand 3 ай бұрын
@@gorgolyt Cool. I'm a Software Engineer at Amazon. You?
@JOP_Danninx
@JOP_Danninx Жыл бұрын
This was my first ever hard problem, and I was so close to solving it- I hadn't considered the fact that I could leave some stacks until the end to calculate them using [ h * (len(height)-i)], so I had that for loop nested inside the original one, which gave me some time limit issues. These videos explain things super well, thanks 👍
@bchen1403
@bchen1403 2 жыл бұрын
Bumped into one of your earliest uploads and I am amazed at your progress. You improvements in tone is impressive!
@xiaonanwang192
@xiaonanwang192 Жыл бұрын
It's a pretty hard question. But NeetCode explained it in a pretty good way. At first, I couldn't understand it. But in the end, I found it a very good video.
@tekashisun585
@tekashisun585 Ай бұрын
I would've never come up with that good of a solution with my abilities right now. Leetcode has humbled me a lot since I am an almost straight A student in college. I trip up on mediums and hard easily, it shows that GPA doesn't mean anything and I still have a long way to go with my problem solving skills.
@mandy1339
@mandy1339 2 жыл бұрын
Repetition really helps nail down the point into my head till it clicks. Liked and subscribed. Thank you!
@protyaybanerjee5051
@protyaybanerjee5051 3 жыл бұрын
What an intuitive way to handle the left boundary . Kudos!
@tarunchabarwal7726
@tarunchabarwal7726 4 жыл бұрын
I watched couple of videos, but this one does the job :)
@ammarqureshi2155
@ammarqureshi2155 2 жыл бұрын
man you are underrated, such a clear explanation. keep it up my guy!
@justinUoL
@justinUoL 3 жыл бұрын
sincerely the best explanation for lc questions in 21st century. thank you!
@jackieli1724
@jackieli1724 Жыл бұрын
I agree with you
@Ahmed.Shaikh
@Ahmed.Shaikh 6 ай бұрын
Nah lc explanations of the 17th century were bangers.
@gorgolyt
@gorgolyt 3 ай бұрын
LeetCode was founded in 2011. 🙄
@harishsn4866
@harishsn4866 2 жыл бұрын
Such a clever solution with minimal usage of extra space and minimal function calls. Love it.
@MaheshT101
@MaheshT101 3 жыл бұрын
This is the best explanation I found for this problem. Thank you
@80kg
@80kg 2 жыл бұрын
Thank you for the most clear explanation and code as always!
@stella123www
@stella123www 2 жыл бұрын
I like the intuition part to clear up why stack is being used, thanks!
@chenhaibin2010
@chenhaibin2010 2 жыл бұрын
The stack O(N) method deserves to be a hard problem. But you explained it so well, it did not feel that difficult after watching your video. thank you
@chriss6114
@chriss6114 3 жыл бұрын
amazing algorithm and explanation. Really great solution you got.
@kunlintan6511
@kunlintan6511 2 жыл бұрын
Thanks! Your explaination helps a lot!
@DonTaldo
@DonTaldo 3 жыл бұрын
Just awesome man, such a nice explanation! I needed only the first ten minutes to figure it out what I was missing
@rushilv4102
@rushilv4102 2 жыл бұрын
Blown away by the logic! Thankyou for the clear and concise explanation.
@jingwenren8157
@jingwenren8157 2 жыл бұрын
Very clear explanation on the example!! Thank you very much!!👍
@-_____-
@-_____- Жыл бұрын
Good stuff. I came up with a solution that used a red black tree (TreeMap in Java), but the use of a monotonic stack is brilliant and much easier to reason with.
@hakimamarouche9185
@hakimamarouche9185 6 ай бұрын
how did you do that?
@JannibalForKing
@JannibalForKing Жыл бұрын
Wow. This is so intuitive. Thanks man, you're helping me out a lot!!
@TechOnScreen
@TechOnScreen 2 жыл бұрын
ultimate solution! no other explanation can beat this.
@PallNPrash
@PallNPrash 3 жыл бұрын
very nice...Thanks for a detailed, clear explanation
@deepanshuhardaha5750
@deepanshuhardaha5750 3 жыл бұрын
Just Amazing algorithm and explanation...Thank a lot
@therealg9542
@therealg9542 11 ай бұрын
Your explanation is so good, I didn't even have to look at the code solution!
@suhaneemavar5573
@suhaneemavar5573 Жыл бұрын
This is the best optimized solution I've seen till now..👌🏻👏🏻 Thank you so much for the best explanation.❤Your solutions are always optimal and also get to learn complete thought process step by step . I always watch solution from this channel first. This channel is amazing, I follow all the playlist of this channel. I feel fortunate that I got this channel when I started preparing DSA.
@gugolinyo
@gugolinyo Жыл бұрын
You could use the trick to iterate for(int i = 0; i
@binilg
@binilg Жыл бұрын
This was a hard problem for me and this video is the one which worked out best for me. Thanks for this video.
@yazeed8240
@yazeed8240 6 ай бұрын
This is an excellent explanation! Thank you so much for these videos!
@anujchoudhary5645
@anujchoudhary5645 2 жыл бұрын
Thank you so much for the video. You make hard questions easy :)
@strayedaway19
@strayedaway19 3 жыл бұрын
Awesome explanation, finally understood it.
@inderwool
@inderwool Жыл бұрын
thanks, bud. stuck on this for hours trying to over engineer a solution using sorting + linked list but it kept failing because TLE. I like your approach so much better.
@shubhankarsingh8456
@shubhankarsingh8456 2 жыл бұрын
Best explanation, helped a lot. Thanks a lot!!!
@gaurishaaaa
@gaurishaaaa 5 ай бұрын
with every video the respect for you just increases. Great work navdeep!
@arthurmorgan332
@arthurmorgan332 3 жыл бұрын
Thanks a lot buddy, you explanation was really good. 😘
@MotleyVideos
@MotleyVideos 2 жыл бұрын
Thanks for the explanation with illustration!
@JamesBond-mq7pd
@JamesBond-mq7pd 7 ай бұрын
Thank you. So easy to write code after explanation.
@dhruvgarg722
@dhruvgarg722 4 жыл бұрын
great explanation!
@get_out_it
@get_out_it 3 ай бұрын
first i didn't catch this solution but now i understand. You have topnotch skills.
@yuchenwang-
@yuchenwang- Жыл бұрын
Thank you so so much!! I finally understand how to solve it
@afzhalahmed1210
@afzhalahmed1210 Жыл бұрын
Took me hours to get this one. Nice explanation NeetCode.
@Rob-147
@Rob-147 Жыл бұрын
Got to 96/98 then got time limit exceeded. Now time to watch your approach :D. Wow, that approach was much better, was able to code it up no problem. Thanks again!!!
@cgcrack4672
@cgcrack4672 10 ай бұрын
I was able to come up with brute force and the test cases are like 87, can you please share your approach.
@BloobUbloobok
@BloobUbloobok 5 ай бұрын
Elegant and effective solution, explanation helped me to understand what am I missing in my way of thinking, thank you! 👍
@maganaluis92
@maganaluis92 3 жыл бұрын
Great explanation.
@yakovkemer5062
@yakovkemer5062 2 жыл бұрын
Thank you for brilliant explanation
@adityatiwari2412
@adityatiwari2412 26 күн бұрын
Thanks for a clear explanation!
@kucukozturk
@kucukozturk 2 ай бұрын
Thanks for the clear explanation.
@anybody413
@anybody413 2 жыл бұрын
Thanks!! Super helpful!
@abdulnarimanov2256
@abdulnarimanov2256 3 жыл бұрын
best explanator in youtube
@technophile_
@technophile_ 3 ай бұрын
I think this is one of those problems that can be solved in an interview setting if, and only if you've solved it before. There's no way someone would be able to come up with this solution in an interview 😮‍💨
@SaisankarGochhayat
@SaisankarGochhayat 2 жыл бұрын
So well explained!
@n1724k
@n1724k 9 ай бұрын
Watched 3 times, now it really clicked! If two consecutive bars have the same height it will be hard to do expanding to left, but the first one will take care of the rectangle anyway.
@whonayem01
@whonayem01 2 жыл бұрын
Thanks NeetCode!
@Goodboybiubiu
@Goodboybiubiu 2 жыл бұрын
Amazing explanation!
@ChandanKumar-wb9vs
@ChandanKumar-wb9vs 3 жыл бұрын
Great explanation!!
@gregoryvan9474
@gregoryvan9474 2 жыл бұрын
you made it easy to understand but I dont think I could come up with that answer in an interview setting if I have never seen the problem before....
@amruthammohan1667
@amruthammohan1667 Жыл бұрын
The best ever explaination ..💞
@ruiqiliu3114
@ruiqiliu3114 2 жыл бұрын
A super hard problem...but good explanation, thx so much.
@kunalkheeva
@kunalkheeva Жыл бұрын
The Best explanation but I needed the solution in java. Thank you anyways.
@niraiarasu131
@niraiarasu131 Жыл бұрын
I solved the problem by myself and cameup with this intutive approach, just find next smaller and prev smaller element class Solution: def largestRectangleArea(self, heights: List[int]) -> int: n = len(heights) nse = [n]*n pse = [-1]*n ans = 0 #nse stack = [0] for i in range(1,n): while stack and heights[i]
@kingKabali
@kingKabali 2 жыл бұрын
अद्भुत, अकल्पनीय, अविश्वसनीय
@gomonk8295
@gomonk8295 4 жыл бұрын
keep them videos coming
@WorkAccountTalha
@WorkAccountTalha Ай бұрын
beautiful drawing and great explanation!!!!!!
@saifalnuaimi204
@saifalnuaimi204 2 жыл бұрын
thanks man you are the best
@jegadheeswarank6290
@jegadheeswarank6290 4 ай бұрын
Awesome explanation
@ygwg6145
@ygwg6145 Жыл бұрын
This algorithm is pretty intuitive from the point of view that, in order to calculate the effect of each additional vertical bar the information needed from existing bars is exactly the stack.
@kafychannel
@kafychannel Жыл бұрын
thank you so much !
@B3TheBand
@B3TheBand 6 ай бұрын
This is the last problem in the Grind 75. I solved it with O(n^2) but the time limit exceeded. You're gonna help me complete the Grind 75 let's goooooo
@andreytamelo1183
@andreytamelo1183 2 жыл бұрын
Thanks!
@ronniey4231
@ronniey4231 6 ай бұрын
beautiful drawing and explanation❤❤
@canshulin8865
@canshulin8865 4 жыл бұрын
great, thanks
@nuamaaniqbal6373
@nuamaaniqbal6373 2 жыл бұрын
Thanks Man!
@waynegreen7970
@waynegreen7970 3 жыл бұрын
good content!
@demaxl732
@demaxl732 9 ай бұрын
I was so close to solving my first hard problem, One day i will become just as good as this guy
@soojy
@soojy Жыл бұрын
@NeetCode what keyboard & switch are you using? the clacky sound as you type is so satisfying. And thanks for the excellent content!
@vyshnavramesh9305
@vyshnavramesh9305 3 жыл бұрын
Finally, thanks!
@jasminehuang7748
@jasminehuang7748 2 ай бұрын
i spend over an hour on this problem and got this O(n^2) divide and conquer solution that finds the lowest height, updates maxarea based on a rectangle using that lowest height, and then splits the array into more subarrays deliminated by that lowest height and repeats. i thought i was so smart lol
@krishivgubba2861
@krishivgubba2861 2 ай бұрын
i did the same thing but got a time limit exceeded error on leetcode. did your solution pass?
@jasminehuang7748
@jasminehuang7748 2 ай бұрын
@@krishivgubba2861 nope haha that's why i had to come here to see the solution
@mapo5959
@mapo5959 2 жыл бұрын
how do you come up with this in an interview. just knowing monotonic stack isn't enough, must be legit einstein's cousin
@aabhishek4911
@aabhishek4911 2 жыл бұрын
you cant do this in an interview unless you know the answer , or as you said you must have einsteins genes
@mwave3388
@mwave3388 Жыл бұрын
Even SWEs usually get easy/medium leetcode questions. This is just for training. And I didn't understand the explanation.
@konradhunter1407
@konradhunter1407 Ай бұрын
I used recursion and partitioning by the min element. It worked but was too slow for large lists.
@weraponpat1913
@weraponpat1913 Жыл бұрын
Imagine if this is the coding interview problem that you need to solve under 1 hour for the job
@georgejoseph2601
@georgejoseph2601 Жыл бұрын
I get it every time I watch it and then I forget it after a few weeks, lmao
@umutkavakli
@umutkavakli Жыл бұрын
perfect. just... perfect.
@rostislav_vat
@rostislav_vat 3 ай бұрын
thank you
@davidsha
@davidsha 11 күн бұрын
For anyone who wants a simpler solution to the example in the video, you can simply add another height to the input with `height.append(0)`: class Solution: def largestRectangleArea(self, heights: List[int]) -> int: stack = [] res = 0 heights.append(0) for i in range(len(heights)): j = i while stack != [] and stack[-1][1] > heights[i]: popped = stack.pop() j = popped[0] area = (i - j) * popped[1] res = max(area, res) stack.append((j, heights[i])) return res
@sumitsharma6738
@sumitsharma6738 11 ай бұрын
Got it!!
@yinglll7411
@yinglll7411 2 жыл бұрын
Thank you so much! This question bugged me…
@clementlin3140
@clementlin3140 Жыл бұрын
Bro..... you're so smart!
@RobinHistoryMystery
@RobinHistoryMystery 5 ай бұрын
thanks
@anmatr
@anmatr 3 жыл бұрын
Very good explanation and great solution! On another note, what do you use to make you drawings?
@anmatr
@anmatr 3 жыл бұрын
@@NeetCode Do you use the mouse as drawing device or a pen? And if you use a pen, which one?
@ohyash
@ohyash 2 жыл бұрын
@@anmatr i could hear mouse clicks for everything he drew in this video. Not sure if some pens make the same clicking sound as well
@chits006
@chits006 2 жыл бұрын
Good Video: one suggestion , if we push -INT_MAX extra height to the input , we dont have to bother about elements remaining in stack after the iteration.
@zokalyx
@zokalyx 10 ай бұрын
We don't necessarily have the option to add elements to the input, especially if it's a fixed size array (C / Java)
@Famelhaut
@Famelhaut 8 ай бұрын
the monotonic stack is genius
@christopherconcepcion9000
@christopherconcepcion9000 Жыл бұрын
Hey, love your videos. Was stuck on this problem and rewrote your solution in ruby and broke down each part to understand it. It failed on test [2,1,2] which was 87/98. Looking through the comments of this video I saw someone suggested appending 0 to heights to prevent traversing the stack and this solution actually can pass [2,1,2]. Video might require a small update, just informing you.
@syedjaveed3607
@syedjaveed3607 3 ай бұрын
7:40 I was wow!
@9Steff99
@9Steff99 3 күн бұрын
I would love to have a hint for each problem what the runtime of the optimal solution is, so I can know if my solution is optimal without looking at the sample solution
@kalyankumar239
@kalyankumar239 2 жыл бұрын
I wish I have watched this a day early. it was asked in todays interview and I didn't do it.
@protyaybanerjee5051
@protyaybanerjee5051 3 жыл бұрын
Do you mind mentioning what kind of whiteboarding software and hardware you use . With diagrams, it's very intuitive.
Generate Parentheses - Stack - Leetcode 22
13:37
NeetCode
Рет қаралды 311 М.
How I would learn Leetcode if I could start over
18:03
NeetCodeIO
Рет қаралды 322 М.
Survival skills: A great idea with duct tape #survival #lifehacks #camping
00:27
1❤️
00:17
Nonomen ノノメン
Рет қаралды 13 МЛН
Largest rectangle in Histogram | Leetcode #84
27:43
Techdose
Рет қаралды 108 М.
10 Math Concepts for Programmers
9:32
Fireship
Рет қаралды 1,8 МЛН
Big-O Notation - For Coding Interviews
20:38
NeetCode
Рет қаралды 426 М.
Car Fleet - Leetcode 853 - Python
16:10
NeetCode
Рет қаралды 156 М.
Largest Rectangle in Histogram | Part - 1 | Leetcode 84
30:00
take U forward
Рет қаралды 204 М.
Container with Most Water - Leetcode 11 - Python
12:37
NeetCode
Рет қаралды 301 М.
8 patterns to solve 80% Leetcode problems
7:30
Sahil & Sarra
Рет қаралды 236 М.
Maximal Square - Top Down Memoization - Leetcode 221
19:50
NeetCode
Рет қаралды 61 М.
5 Useful F-String Tricks In Python
10:02
Indently
Рет қаралды 274 М.
Coding Interview Problem: Largest Rectangle in a Histogram
16:18
Jackson Gabbard
Рет қаралды 306 М.
Survival skills: A great idea with duct tape #survival #lifehacks #camping
00:27