Тёмный

Koko Eating Bananas - Binary Search - Leetcode 875 - Python 

NeetCode
Подписаться 807 тыс.
Просмотров 198 тыс.
50% 1

Опубликовано:

 

6 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 238   
@NeetCode
@NeetCode 3 года назад
💡 BINARY SEARCH PLAYLIST: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-U8XENwh8Oy8.html
@aniruddhac99
@aniruddhac99 3 года назад
thanks!
@algorithmo134
@algorithmo134 3 года назад
Can you do this question please? leetcode.com/problems/binary-tree-cameras/
@fa11en1ce
@fa11en1ce 2 года назад
I am horrified by the amount of bananas Koko is eating.
@NeetCode
@NeetCode 2 года назад
Lol
@humbleguy9891
@humbleguy9891 Год назад
Koko is high on carbs these days.
@leetcoderafeeq2641
@leetcoderafeeq2641 Год назад
@@humbleguy9891 lmao
@leeroymlg4692
@leeroymlg4692 Год назад
the funny thing is, the problem never specified that it's a monkey. It very well could be a human named Koko
@zweitekonto9654
@zweitekonto9654 Год назад
@@leeroymlg4692 The funniest thing is, no one asked.
@symbol767
@symbol767 2 года назад
I hate this problem honestly, one of the weirder binary search problems for me... Coming up with the intuition and understanding the problem was the hardest part
@gto433
@gto433 Год назад
I was able to figure out the problem, but seeing the time complexity of nlogn made me think there was a more optimised soln out there...... there wasnt.
@case6339
@case6339 Год назад
whenever you need to check solution with an ordered list of values such as this, ask yourself this: 'if the solution is negative, does that mean we can skip the values before or after this value?' if the answer is yes, the solution can be optimized by binary search.
@rryann088
@rryann088 Год назад
@@case6339 i did not understand what you said, sorry, care to explain?
@case6339
@case6339 Год назад
@@rryann088 Sure, think about how BS is taking advantage of a sorted list to select either the left or right portion. The same principle applies here. Let me show the relevant code: ``` while (l
@rryann088
@rryann088 Год назад
@@case6339 thank you so much! got it 👌
@Grawlix99
@Grawlix99 Год назад
A couple tips/optimizations I noticed: 1. We shouldn't start at l = 1. We should start at l = ceil(sum(piles)/h. Take [3,6,7,11] and h = 8 as an example. Logically, we know that to finish all bananas within 8 hours, the minimum rate is [3 + 6 + 7 + 11] / 8 = 27 / 8 = 3.375. Koko can't eat partial bananas, so round up to 4. 2. We don't need to use min() to track the result. We can simply store 'res = k' every time, instead of 'res = min(res, k)'. Think about this logically: a) If we cannot eat all the bananas within H hours at rate K, we increase our L (slow) pointer and do not store a result b) If we can eat all the bananas within H hours at rate K, we decrease our R (fast) pointer and store a result c) If we hit an exact match (Koko eats all bananas in exactly H hours), we store our result and decrease our R (fast) pointer. Since we have just decreased our fast pointer, there are two options: Option 1: It is impossible for us to ever eat all bananas within H hours. Option 2: We find a valid rate, but this rate is less than the previous rate we discovered. 3. Minor, more obvious point: We *cannot* break early the first time we eat all bananas in exactly H hours. Take [3,6,7,11] and h = 8 as an example. If our rate is 5, we will eat all bananas in 8 hours, but 5 is not the lowest possible rate of consumption. ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- The code: def minEatingSpeed(self, piles: List[int], h: int) -> int: l, r = ceil(sum(piles)/h), max(piles) res = r while l h: l = k + 1 else: res = k r = k - 1 return res
@def__init
@def__init Год назад
Great point
@leetcoderafeeq2641
@leetcoderafeeq2641 Год назад
Awesome explanation, thanks 😊
@tobiichiorigamisan
@tobiichiorigamisan Год назад
I agree with that 2nd point of yours but abt the 1st one: Actually what you're doing is sum(piles) which is an O(n) operation. Think abt getting a larger list of 5000 or 8000 numbers. Would you still think that doing a summation is better than using two pointers? Just my assumption but I'd say 1st point takes a bit longer time than the one explained by NeetCode.
@indkao28
@indkao28 Год назад
@@tobiichiorigamisan Wouldnt that O(n) summation potentially save you from doing a certain number of O(n) operations where you add ceil(0/k) to hours?
@QuanNguyen-km2zb
@QuanNguyen-km2zb Год назад
@@tobiichiorigamisanfor p in piles is already a O(N)
@aaen9417
@aaen9417 Год назад
This is the fist time that I ALMOST got a medium leetcode right by myself, I was just missing the part of how to get the max(piles) values without having to order the array first, thus having a O(n logn) complexity. Thanks man, it's very motivational to feel like my solutions are slowly resembling yours
@Kenny-st8cg
@Kenny-st8cg Год назад
How does one come up with the solution for this problem without help, but then not know how to find the maximum value in an array?
@aaen9417
@aaen9417 Год назад
@@Kenny-st8cg true. Thanks for pointing out. No need to sort anything. Finding the max value in an array with a loop or the max() function only requires O(n)
@financewithsom485
@financewithsom485 2 года назад
honestly man you are the best explainer in youtube . dont stop uploading i wonder why people will go for algoexpert when they can get this masterpice content
@aaen9417
@aaen9417 Год назад
I think the only reason is because we didn't know about the existence of Neetcode. I bought the AlgoExpert package a while ago, and now I find myself using Neetcode instead. Not to disrespect AlgoExpert content, it's good. Neetcode is just amazing (and free). Don't worry Neetcode, we'll make you popular and will contribute you financially as well!
@inderwool
@inderwool Год назад
You would be able to optimise this solution even further by calculating the min instead of just using 1. As we know the total number of bananas is equal to the sum of all the piles and given the time h, we can calculate that the min will have to be total no. of bananas / h. Koko couldn't possibly finish the entire piles of bananas if she were to eat slower that this rate.
@almasabdrazak5089
@almasabdrazak5089 3 года назад
I understood that it had to be a binary search but I didn't get how to change the range values until I watched your explanation, Thank you !
@jedlechner3788
@jedlechner3788 2 года назад
Your vids are great. Just a comment for the watchers. Once the algo is defined try coding the problem yourself. I have improved so much by doing that.
@theJYC
@theJYC 8 месяцев назад
I was initially thinking, why don't we need to sort the piles in ascending order before performing the binary search? And I finally understood why; in fact, all but the largest pile in the list of piles are irrelevant to solve this problem for the binary search solution. Basically we're first assigning left = 1 and right = max(piles) since, at the very worst case, Koko can only eat 1 banana per hour* and, at the best case, Koko can eat as many bananas as there are in the largest pile of the given piles of bananas (if there were five piles = [30, 11, 23, 4, 20], the largest pile contains 30 bananas). Note that we can't control how many piles of bananas (ie. len(piles)) Koko is given, but we do know that-- at most-- Koko can finish *one* entire pile in an hour and no more piles in that hour**. So essentially we just need the two pointers, again pointing to both the minimum and maximum number of bananas Koko can eat in one hour. With those two points are defined, we essentially have ourselves a "sorted" list to perform the binary search. For instance, following the above example where piles = [30, 11, 23, 4 ,20], our initial range to perform the binary search would be a sorted list of 30 elements in ascending order = [1, 2, 3, 4, ... 27, 28, 29, 30]. Upon watching the video solution multiple times, I see that Neetcode does explain this well but it didn't click for me the first time watching it; hope it's helpful to others who also had the same confusion. *: Koko can't eat a fraction of a banana (we need to return the minimum '*integer* of k), so the least number of bananas Koko can eat is 1 banana (and not, eg, 0.5 bananas). **: Admittedly the problem description wasn't super explicit about this condition, though it does read: "Each hour, she chooses som pile (note: singular) of bananas and eats `k` bananas from that pile (note again: singular 'pile' not plural pile's')
@AdiPrimandaGinting
@AdiPrimandaGinting 7 месяцев назад
Thank your for the comment. I got it when first watching this video several days ago, but then I forgot about the "sorted" part. We actually make a new list ourselves
@numberonep5404
@numberonep5404 2 года назад
Super dupper video! two small improvements: the left ind can start at max(1,-1+sum(piles)//h) and we can "break" the for loop before it finishes looping when the sum of hours is strictly bigger than h
@mmansaa
@mmansaa 2 года назад
You have a great ability to simplify solutions and present them in a very clear way. Thank you!
@rohithjanardhan4970
@rohithjanardhan4970 2 года назад
Small tip: you do not have to store res variable. While will exit when l == r + 1, So you can return l and it would still work
@ary_21
@ary_21 2 года назад
reading your comment i didnt store the variable and it gave wrong answer, its possible that while loops exits just after a condition where time taken by koko>hours in that case mid isnt the answer and answer stored earlier (which satisfies time_taken
@willshen5051
@willshen5051 2 года назад
@@ary_21 agreed, the key for this practice is to store the res. Or you would not guarantee to find the least K, but a K that can generate the right h. there are brunch of those K's, and the right answer is the smallest among them.
@ary_21
@ary_21 2 года назад
@@willshen5051 True , have you solved it now ? Every time i try to find time taken by koko by deviding piles[i] by mid i get error that says t is not in range of int , i also tried long long and got the wame error
@willshen5051
@willshen5051 2 года назад
@@ary_21 careful if you are suing "/" or "//", and use mod operation "%" to help you in necessary and believe Neetcode did something tricky there without explaining. I have a less clever version: if piles[i] % mid == 0: counter += piles[i] % mid. else: counter += piles[i] % mid +1 ex: piles[i] = 6, mid =3, counter should += 2 piles[i] = 7, mid =3, counter should += 3
@JackAbou2
@JackAbou2 2 года назад
you mean counter += piles[i] / mid. otherwise counter will have 0. but a good trick
@telnet8674
@telnet8674 2 года назад
understanding the problem was half of the solution, thanks
@jigglypikapuff
@jigglypikapuff 11 месяцев назад
Thanks! A slight improvement would be to tighten "l" (lower bound) to be =math.ceil(min(piles) * len(piles) / h) since we cannot go better than that
@YOUPICKSoNET
@YOUPICKSoNET Год назад
in the older python it should be: hours += math.ceil(float(p) / k)
@hashemalsailani4457
@hashemalsailani4457 Год назад
king
@saikrishnadevendiran1095
@saikrishnadevendiran1095 3 месяца назад
Thanks king, I was stuck at this for so long and I finally decided to come to comments once chatgpt couldn't help.
@freshcheese
@freshcheese Месяц назад
hours += math.ceil(float(p) / k) needs a float in line 10 btw for anyone who was confused why the code wasn't working
@kaijou2916
@kaijou2916 24 дня назад
Bro you are a godsend, I was pulling my hair out on why the code wasn't working even through it was identical. Could you explain why this fixes the code though? It seems like some python specific adjustment. EDIT: I read some more comments and figured it out, older python does integer division unless specified.
@RobinSingh-ms3zt
@RobinSingh-ms3zt Год назад
There is no need of res = min(res, k) writing res = k will also work as we are eventually moving towards left and thats always gonna be smaller.
@slayerzerg
@slayerzerg 5 месяцев назад
you get it
@jayp9158
@jayp9158 11 месяцев назад
No way I'd come up with this on the fly. Definitely just gonna memorize the code lol
@princeofexcess
@princeofexcess 28 дней назад
both min and max can be approximated before binary search. dont start at 1 and end at max You can optimize further to reduce complexity. although binary search is log of max so might not be worth extra optimization. min can be approximated we know that koko has to eat all the bananas in h hours. So koko has to eat at least some minimum x bananas per hour to finish all the bananas. if x = all bananas koko has 1 hour koko must eat at least x bananas per hour if koko has 2 hours koko must eat at least x/2 bananas per hour. ...and so on Using [3,6,7,11] and h = 8 koko must eat at least 3+6+7+11 = 27 bananas in 8 hours 27/8 = 3.3... (round up to 4 since koko cant eat fractional bananas per hour) minimum is 4 per hour not 1 max also can be approximated. if we take arbitrary x as max and assume it takes 2 hours to eat that pile if there is remaining hours to eat all the other piles in 2 hours then max is not x but x/2 Using [3,6,7,11] and h = 8 max = 11 so 11 / 2 = 5.5 (round up to 6) rate of 6 to eat 11 in 2 hours we would still have 6 hours remaining for other piles since 8 - 2 = 6 we have still 2 hours per other 3 piles remaining. 6/ remainder of piles = 6 / 3 = 2 so there is a remainder of 2 hours per pile so actual max is 6 not 11 Even if every pile was 11 you have 2 hours per pile so worst case you eat 6 bananas per hour. So actual_max = max/ (hours/n) ; where n = number of piles
@johnvanschultz2297
@johnvanschultz2297 11 месяцев назад
You actually don't even need to keep track of result here. When the binary search ends the value at the left pointer should always be the result
@joaquinbadillo7398
@joaquinbadillo7398 Год назад
Great video as always! I am following your amazing roadmap and I usually check my approaches with your videos to see if I missed something. When going through this one I wanted to point out that a time complexity of O(max(p) * p) is actually way worse than it seems: it is Knapsack problem level bad. This has to do with it being a "pseudo-polynomial time" algorithm, because it gets worse (exponentially) depending on the number of bits used to represent an integer in the machine being used. Using binary search removes such threat because it becomes polynomial on the number of bits as well
@fayeyuan6552
@fayeyuan6552 Месяц назад
Rather than starting from l = 1, I think we can further optimize further by starting from l = math.ceil(sum(piles)/h). This is because in the optimal scenario, each pile can be perfectly divided by the rate to meet the time limit. Using a rate smaller than this is unlikely to reach the time limit.
@ShamiSBhat
@ShamiSBhat 10 месяцев назад
Your neetcode practice problems are such a life saver. I'm grateful to have stumbled across your channel earlier this year. I have a request to ask , could you please make a list of recursive problems too. Thanks a ton for your amazing content !
@jessica8975
@jessica8975 2 года назад
What's the time complexity? because there is a max() so it takes O(n), binary search takes log(n), and it loops through all piles takes O(len(piles)), so is it like O(log(O(n))*O(len(piles)),which should round to O(n)? Can someone help explain it, please? Thank you in advance
@okayfine6342
@okayfine6342 2 года назад
Remember that you can have different variables in Big O, so let's make it easier to talk about by saying there's "n" elements in the array and the largest value is "k". Max is O(n) because we have to iterate over n values, but that only needs to be done once => O(n) Binary search is O(log(k)) since we start with the largest value, and then each time we do it, we need to consider the n values in the array. Therefore, with log(k) repetitions, each "costing" n, we get O(n * log(k)) For Big O you need to focus on the asymptotically largest values, so O(n) + O(n * log(k)) simplifies to O(n * log(k)).
@tracyqian6802
@tracyqian6802 Год назад
however if you initialize it to L,R = math.ceil(sum(piles)/h),max(piles) it will run
@servantofthelord8147
@servantofthelord8147 11 месяцев назад
I love it when his voice goes deep, it makes the problem feel so much more serious 😆
@minciNashu
@minciNashu 2 года назад
It passes all cases with just 'res = k', instead of 'res = min(res, k)'
@TadesseDev
@TadesseDev Год назад
You are incredibly good at driving the solution, It's not like you are telling what the answer is, but teaching how to see the problem. coming to this tutorial I had no idea what the optimal solution could be, then I just watch from 0:25 to 0:35 and understand how to approach and solve it ❤❤. And by the way, I google back to the video to say Thank you 🙏🙏🙌🙌
@bommireddyvenkatadheerajre4999
@bommireddyvenkatadheerajre4999 2 месяца назад
After seeing your videos my brain was so sharp and able to do this question on my own
@dera_ng
@dera_ng 2 года назад
Wow, this particular question shows that you don't exactly need an array to perform binary search, binary search isn't tied to a data structure per se. I tried creating an array with all the possible values [1 -> max(piles)] from one up until the maximum value in the array so that I would be able to use binary search on an array as I've always used binary search. This method of just using pointers really opened my eyes to how much tunnel vision I had. Learning from example is great and all, however how do people come up with these solutions from their head? Is it something you can only learn from a computer science degree? Or is there some step by step process to algorithm design that I don't know of?
@user-sn8hz2le5s
@user-sn8hz2le5s 2 года назад
Hello, I solved the question by myself, I don't have CS degree, I have about 80 LC problems. I think the ability to solve such problems will come with time, so just practice every day!
@dera_ng
@dera_ng 2 года назад
@@user-sn8hz2le5s Thanks 🙂
@jagdeeshhooli930
@jagdeeshhooli930 Год назад
@@dera_ng I also scratched my head around this, like how come there is no actual array??, but realized that array could be totally avoided here since possible values are consecutive, let us say if they aren't then we do (l+r)/2 it might lead to value which maynot be present in the range of values we are looking for
@MrjavoiThe
@MrjavoiThe Год назад
Yeah and I still didn’t learn anything.
@BbB-vr9uh
@BbB-vr9uh 9 месяцев назад
It took me a bit of time to figure out i should be using binary search for this. And even then I wrote much messier code. I definitely should have spent more time drawing things out and trying to think it through before even doing the pseudo code and I’d probably have done a lot better.
@cluster027
@cluster027 2 года назад
Thank you for this. I really like how you broke the problem down and watching your video made everything click. I was going through the discussions in lc before watching this but their explanations were too big brain for me...
@AustinCS
@AustinCS Месяц назад
Hey, I bought neetcode premium. Got to this one and couldn't even begin to think about how to apply the BS range solution to it, but the other mediums so far I have been able to solve. Not sure why i struggled on it so much. Do you have any tips for using your premium product that would help me become better at recognizing and thinking through how to apply the patterns to the problem and recognizing which patterns to apply? Bear in mind, I'm still working through the DS&A section.
@XxRazcxX
@XxRazcxX Месяц назад
Minimum value can be further optimized as ceil(sum(nums)/h)
@msnhao
@msnhao 2 года назад
You can make it slightly faster by starting at minK = math.ceil(sum(piles) / h) instead of minK = 1, but it doesn't really change the time complexity
@nguyen-dev
@nguyen-dev 2 года назад
It changes the complexity actually, even though not that much. If we know the minK, the time complexity is O(p*log(max(p) - S/h)) where p is the size of piles and S is the sum of piles.
@_control_
@_control_ 2 года назад
@@nguyen-dev There is also another small optimization you can do. You don't need to go through all the piles once hours is higher than h, you can break it there. Here is the solution merging both optimizations. Here is the optimized solution if someone is interested class Solution: def minEatingSpeed(self, piles: List[int], h: int) -> int: if len(piles) == h: return max(piles) l, r = math.ceil(sum(piles)/h), max(piles) res = r while l
@schrodingerscat3912
@schrodingerscat3912 2 года назад
I would've never been able to solve this johnny-on-the-spot in an interview. hell no
@berkeevrensevdi1788
@berkeevrensevdi1788 2 года назад
I think there is no need for "res = min(res, k)" part, "res = k" is enough. Since it is impossible to have greater k value once "hours
@ester69420
@ester69420 Год назад
Regardless of how many bananas are present in one pile, koko would need atleast 1 hour to finish that pile no matter what the value of h is, so the value of k(numbers of total hours taken) will always be greater than or equal to length of the array so we could go from len(array) to max(piles), not too much of an optimization though.
@alexl2512
@alexl2512 11 месяцев назад
A simpler version of implementation. When we find a speed meet the criteria set it as the right bound and keep searching a better one. def minEatingSpeed(self, piles: List[int], h: int) -> int: l, r = 1, max(piles) while l < r: m = (l + r) // 2 hours = 0 for p in piles: hours += math.ceil(p / m) if hours > h: l = m + 1 else: r = m return l
@hamzaunsal301
@hamzaunsal301 4 месяца назад
I'll have interview with one of the big company. If you would not be exist, I'd not even have any hope. Thanks for your great solutions mate! I hope I can catch your level one day
@Lintlikr1
@Lintlikr1 9 месяцев назад
at 11:09 you cross out the right half of the array. What if the correct number was 6? You checked if there was a smaller value but what if there wasnt one? Lets say you guessed 6 and that computed to be less than or equal to the target of 8 but then you move your right pointer to 6-1 (5). Now you've excluded 6 from being the solution. How does this work?
@jaytreveller
@jaytreveller Год назад
For the new cases is not working and an unsorted list destroy this solution so my approach is just add a sort(piles) at the beginning and continues with this solution.
@hsiaotzu0505
@hsiaotzu0505 2 года назад
謝謝!
@ishtiaquehussain
@ishtiaquehussain 2 года назад
Minor typo? Shouldn't the brute-force complexity be: O(max(p).len(p)) and not O(max(p) . p)?
@sagarpotnis1215
@sagarpotnis1215 2 года назад
i have a doubt neetcode. why is the algorithm not working if u write the standard binary search code: if hours < h: r = k - 1 elif hours > h: l = k + 1 else: return k
@andrenbr
@andrenbr 2 года назад
Because you found a solution where hours == h, but it might not be the minimum value of k you can find.
@sagarpotnis1215
@sagarpotnis1215 2 года назад
@@andrenbr that makes sense Andre. Thanks I appreciate it
@kapilrules
@kapilrules 14 дней назад
@Neetcode do we sort the piles array here before starting the loop?
@danielsun716
@danielsun716 Год назад
The most difficult thing is, I think, if totalTime == h, what should we do? Just remember if we find an appropriate k, we should try to find a smaller k. So, totalTime == h, we find a good k, then we should try to find a smaller k.
@tomtran6936
@tomtran6936 8 месяцев назад
In the example, very first time you found 6 and move searching window to the left and exclude 6, how can we make sure we will have a better solution than 6? any possible chance 6 may be the best solution ?
@user-jz5so4gt1p
@user-jz5so4gt1p 2 года назад
The THumbnail is a work of ART. will be in MET or Louvre one day
@miserablepile
@miserablepile 4 месяца назад
I keep coming back to this one because the thumbnail is amazing lol
@sanchitmishra1895
@sanchitmishra1895 Год назад
this is one of those questions which i cant think of where do i start from . am i the only one ?
@sinnohperson8813
@sinnohperson8813 3 месяца назад
The first ever leetcode question i attempted two years ago
@julesrules1
@julesrules1 Год назад
Thank you. Your explanation is so satisfying and refreshing!
@rohanmahajan6333
@rohanmahajan6333 2 месяца назад
Had no clue what was going on in this problem spent an hour and didn't make a single dent. I knew it had binary search involved but I literally had no clue in what sense at all
@rohanmahajan6333
@rohanmahajan6333 2 месяца назад
wow this was simple i am cooked
@Kenspectacle
@Kenspectacle Год назад
Hi, what happens when the initial K is actually already the minimum? lets say at 12:01, k = 6 is already the optimal minimum, by searching to the left, won't the binary search miss the target?
@ZSonnenblick
@ZSonnenblick Год назад
without question my least favorite problem ive ever come across. normally really enjoy solving these questions but this was a horrific problem in my opinion. The way it was worded made it drastically more confusing than it had to be. little clarity on how to treat bananas that are unfinished...if you eat 4 from a pile that has 5, maybe that extra 1 carries over to the pile you eat next. the problem should have been much more clearly stated. after you explained, and I reread the problem i can see how it makes sense, but in my eyes this was very poorly worded. a question should demand somebody spend the time trying to figure out a solution. NOT spending too long just trying to understand the problem...wow how frustrating.
@alexandrep4913
@alexandrep4913 Год назад
I'm pretty sure the person who invited this problem got his dog to write the problem.
@jlecampana
@jlecampana 2 года назад
Brutally Awesome Explanation! Thank you!!!
@quirkyquester
@quirkyquester 3 месяца назад
the solution is so elegant, thank you!
@techknightdanny6094
@techknightdanny6094 Год назад
Gotta love this guy! OG 🔥🔥🔥
@ChandraShekhar-by3cd
@ChandraShekhar-by3cd 2 года назад
Best Explanation on the Earth!!!!
@okcomputer2112
@okcomputer2112 5 месяцев назад
why is k == h (or rate = hour) not a separate statement like other binary search algos? why don't we return the rate when they are equal to the hour? why do we have to include it as part of the "
@__the_noob_
@__the_noob_ 5 месяцев назад
Because the valid minimum rate of eating could be equal to or less than the given number of hours, hence both of those conditions can be handled within the same conditional. However, it can never be more than the hours given hence a separate conditional for the greater than part.
@bidishadas832
@bidishadas832 2 месяца назад
One of the best videos on this.
@rommeltito123
@rommeltito123 2 года назад
I like to see u running the code at the end. Maybe its just my OCD
@user-rl7xj9kx4m
@user-rl7xj9kx4m 7 месяцев назад
please do these Magnetic force between balls(Lc: 1552), question Capacity to ship package(Lc:1011) and Smallest good base(483)
@saswatmishra4055
@saswatmishra4055 2 года назад
How do you get the idea that binary search will be used?. Can someone explain the thought process.
@SIAMEInekeidijdnen
@SIAMEInekeidijdnen Год назад
You kinda just have to notice that you can only eat x bananas / hr where that x is in the range of 1 to max(piles). Since you will be getting a sorted array that is in increasing order, you can use binary search on to see which one of x in the range of (1 to max(piles) allows you to eat all the bananas in less than or equal to h hours. and from there on, in case you find that x , you also want to look to the left of the sorted array to see if a smaller value for x satisfies the same condition.
@prathamtyagi5914
@prathamtyagi5914 Год назад
This code is literally impossible in C++. That math.ceil(p /k) he did can't be done in C++. Assuming p/k= 3/4 then it directly becomes 0 not 0.75. I used loop for his. now getting TLE :')
@noober7397
@noober7397 Год назад
instead of doing math.ceil(p/k), you can try math.ceil(p/(float)k). Although it will still give error in later test cases. This worked for me class Solution { public: int minEatingSpeed(vector& piles, int h) { int start = 1, end = 1000000000, n = piles.size(); while(start
@marya6244
@marya6244 2 года назад
AWESOME EXPLANATION!!!
@pranavtiwari8768
@pranavtiwari8768 2 года назад
Concise Solution with the best explanation out there
@sriramr4957
@sriramr4957 2 года назад
How would you identify that this is a binary search problem when you analyse before solving?
@ale-hl8pg
@ale-hl8pg Год назад
I don't know about all problems but if you can abstract a problem into searching through a range, binary search is most likely applicable If you're given a sorted array, binary search is also probably applicable although you might need to modify it (e.g in the case of a rotated sorted array) one thing to keep in mind is that if you have an unsorted array you could still apply binary search once you sort it, but chances are there might be a better solution since sorting is O(nlogn), you're automatically going to have a time complexity of at least that
@redomify
@redomify 3 года назад
thank you senpai neetcode
@QuanNguyen-km2zb
@QuanNguyen-km2zb Год назад
Now I know that min = math.ceil(sum(piles) / h) is easy to understand But can someone explain why max = math.ceil( sum(piles) / (h - len(piles) + 1) ) works? It really does.
@akash693
@akash693 8 месяцев назад
Great explanation ! Thanks
@DeGoya
@DeGoya Год назад
I know it's the right solution, but it feels like a bruteforce solution. That's why I thought there must be something quicker
@mdmasiud542
@mdmasiud542 2 года назад
it is not working
@Donquixote-Rosinante
@Donquixote-Rosinante 9 месяцев назад
why this solution still falls in binary search. where we create extra memory for lowest pile 1 to highest pile 11 to get maximum pile per hour?
@wisdomkhan
@wisdomkhan 2 года назад
well my code gave wrong answer with the same logic above. I used the exact code for cpp
@faiitech5185
@faiitech5185 2 года назад
mine too
@MP-ny3ep
@MP-ny3ep Год назад
Phenomenal explanation thank you.
@Infinighost
@Infinighost Год назад
Is there really no way to solve this with a simple mathematical equation once you have max(piles), piles.length, and h? Seems like there should be but I suppose not.
@ashwinjain5566
@ashwinjain5566 Год назад
can anyone help me understand why this code is always undercounting the speed: class Solution { bool canFinish(int speed, int h, vector& piles){ int hoursTaken = 0; for(int bananas : piles) hoursTaken += ceil(bananas/speed); return hoursTaken 1; if(canFinish(speed,h,piles)){ res = speed; r = speed - 1; }else l = speed + 1; } return res; } };
@PankajKumarThapa
@PankajKumarThapa 2 года назад
You saved Koko with your solution.🤪
@lettry5297
@lettry5297 3 года назад
Your every video is worth to watch. Thanks for video Can you please cover this question 862- Shortest Subarray with Sum at least k
@HungNguyenFineArt
@HungNguyenFineArt 2 года назад
Thanks for very well explanation
@quirkyquester
@quirkyquester 3 месяца назад
best explanation!
@sar3388
@sar3388 2 месяца назад
Again I was able to come up with the solution, again I was unable to code the solution.
@shapethetechworld
@shapethetechworld 2 года назад
Hey, Nice explanation, But I have one doubt about the problem itself. As per the problem, "each hour, Koko chooses some pile of bananas and eats k bananas from that pile". Here what does it mean by some pile? I understood it as we can take more than one pile in an hour. According to your solution, There must not be some pile.
@Coo-
@Coo- 2 года назад
some pile basically means any one pile
@matthewbutner9948
@matthewbutner9948 2 года назад
Ordering of the piles doesn't matter.
@grimzjr
@grimzjr 2 года назад
I dont understand why we needed the res = min(res, k) part of the code. I thought k would always be the result we're looking for. Could someone explain that to me please?
@yoman9446
@yoman9446 2 года назад
the question asks to return the minimum k out of all valid k(s).
@sp33r
@sp33r Год назад
You are correct the min is not needed in the if statement
@neo-be4vq
@neo-be4vq 6 месяцев назад
Hi, can you solve sudoku solver, the solve part is not at all going through my head
@azgharkhan4498
@azgharkhan4498 Год назад
I tried the same in java but some test cases fails. I find it difficult to understand why. @NeetCode can you spot the error. public int minEatingSpeed(int[] piles, int h) { int i =1; int count =0; int j = Arrays.stream(piles).max().getAsInt(); int res =j; while(i
@edk4351
@edk4351 Год назад
The reason you are failing is because you are returning too early. Remove this line if(count == h)return mid; Why does this line fail? Because it is possible that your count == h, but your mid (or the rate of koko eating bananas is still too high. You want further binary searches to narrow down the mid.
@amangautam1779
@amangautam1779 2 года назад
great logic thanks man
@utkarshsharma1550
@utkarshsharma1550 3 года назад
Hi @NeetCode, Hope you are doing well ! Could you please make a video on Brace Expansion II. Thanks and Regards!
@aryaman_godara
@aryaman_godara Год назад
It will according to the latest test cases
@aron9321
@aron9321 Год назад
What is the time complexity of the brute force approach?
@krateskim4169
@krateskim4169 Год назад
Awesome explanation bro
@orangeorange749
@orangeorange749 2 года назад
Could you please make a video on 2104. Sum of Subarray Ranges Thanks and Regards!
@illu1na
@illu1na Год назад
One detail he did not mention explicitedly is that l pointer has to start from 1 not 0. When I did try 0, i did get run time error (Divisible by 0) for some test cases. If L starts from 0 and the solution is 1, L and R both will go down to 0 after hitting 1 to check if 1 is indeed the smallest solution.
@sleepypanda7172
@sleepypanda7172 2 года назад
Mind Blowing Solution
@pryshrng
@pryshrng 3 года назад
Input: [312884470], 968709470 gives a division by zero error so you'd need a check for when your middle element is 0 then return
@NeetCode
@NeetCode 3 года назад
That's weird, i'm not sure how middle would ever be zero if left is initialized as L=1
@pryshrng
@pryshrng 3 года назад
@@NeetCode that makes sense! I think I initialized left as 0
@cyberchad
@cyberchad 2 года назад
She died by eating too much banana
@AdityaSharma-wg4rj
@AdityaSharma-wg4rj Год назад
given solution is incorrect. Try this sol taken from neetcode - class Solution: def minEatingSpeed(self, piles: List[int], h: int) -> int: l, r = 1, max(piles) res = max(piles) while l
@ggbyron7082
@ggbyron7082 2 года назад
I believe line 14 should be r = k, because you are looking for the first occurrence of the feasible eating speed, r = k - 1 will overskip a value.
@yoman9446
@yoman9446 2 года назад
No, you should only do r = k when your while loop has l < r but when your while loop has l
Далее
The LeetCode Fallacy
6:08
Просмотров 494 тыс.
BS-12. Koko Eating Bananas
21:04
Просмотров 158 тыс.
Прохожу маску ЭМОЦИИ🙀 #юмор
00:59
I quit Amazon after two months
10:09
Просмотров 608 тыс.
LeetCode was HARD until I Learned these 15 Patterns
13:00
How to Solve ANY LeetCode Problem (Step-by-Step)
12:37
Просмотров 202 тыс.
10 Math Concepts for Programmers
9:32
Просмотров 1,9 млн
Find Peak Element - Leetcode 162 - Python
11:02
Просмотров 39 тыс.
How I would learn Leetcode if I could start over
18:03
Просмотров 488 тыс.
Прохожу маску ЭМОЦИИ🙀 #юмор
00:59