The 0/1 Knapsack Problem (Demystifying Dynamic Programming)

  Рет қаралды 202,661

Back To Back SWE

Back To Back SWE

5 жыл бұрын

👉 NEW VIDEO & CODE: backtobackswe.com/platform/co... (free)
Free 5-Day Mini-Course: backtobackswe.com
Try Our Full Platform: backtobackswe.com/pricing
📹 Intuitive Video Explanations
🏃 Run Code As You Learn
💾 Save Progress
❓New Unseen Questions
🔎 Get All Solutions
I was inspired to do this video after seeing that Tuschar Roy had covered this problem. He did a good job, but I feel it very necessary to stress what is really happening and what each cell REALLY means.
Dynamic programming is about subproblems, not remembering patterns to fill cells in with. I watched EVERY ONE of Tuschar Roy's videos and found myself MEMORIZING how to fill out the cells INSTEAD of really knowing what was going on.
I hope this video sheds light on what this problem is really trying to express.
I talked about the bottom up way to do things. Here is the code for that way of doing it: www.sanfoundry.com/java-progr...
You can also do it TOP DOWN with recursion where we investigate all expressions of the subproblems to find the optimal solution. The book Elements of Programming Interviews by Aziz Adnan has a very good version of this. The problem is 17.6 in that book.
++++++++++++++++++++++++++++++++++++++++++++++++++
Question: Write a program for the knapsack problem that selects a subset of items that has maximum value and satisfies the weight constraint. All items have integer weights and values. Return the value of the subset.
Can we do it greedily?
0/1 means you cannot split an item. If you could split an item, you could solve this greedily by sorting the item entries by value and then picking from greatest value to least. When you run out of space in your "sack", you'd split the last item and then you would have maximized weight vs value.
Brute Force: We could consider all subsets of items in a complete search and take on the cost of exponential time of 2^n (we will explain this in another video).
Greedy doesn't work, brute forcing won't make the cut, now what? What can we do now?
Dynamic Programming.
Notice that we can subproblem this.
Dynamic programming is not about stupid magic tables that you see people fill out, it is not about guessing. DP is about remembering the solutions to subproblems so that we can find the globally optimal solution. We just subproblemed this recursively.
This is where the table comes from. Each cell MEANS SOMETHING.
IT IS THE ANSWER TO THE QUESTION.
If we solve all the subproblems and remember all answers then we will find the globally optimal answer.
The subproblems are represented by what is called a recurrence equation.
Complexities
n = total items
m = max weight (max weight constraint)
Time: O(nm) (we will be solving this many subproblems)
Space: O(nm) (we will store the results of n*m subproblems)
++++++++++++++++++++++++++++++++++++++++++++++++++
HackerRank: / @hackerrankofficial
Tuschar Roy: / tusharroy2525
GeeksForGeeks: / @geeksforgeeksvideos
Jarvis Johnson: / vsympathyv
Success In Tech: / @successintech
++++++++++++++++++++++++++++++++++++++++++++
The 0/1 Knapsack problem is question 17.6 in the fantastic book Elements of Programming Interviews.

Пікірлер: 673
@BackToBackSWE
@BackToBackSWE 5 жыл бұрын
Table of Contents: (my bad if I'm loud, this video is old and the KZfaq algo keeps feeding it) Problem Introduction 0:00 - 2:38 Walkthrough One Subproblem 2:38 - 4:38 The DP Table Introduction 4:38 - 6:12 The Recurrence Relation 6:12 - 8:30 What Each Cell Really Means 8:30 - 9:08 Solving The Dynamic Programming Table 9:08 - 16:46 Finding The Items That We Chose 16:46 - 18:32 Gearing Your Mind For Other DP Problems 18:32 - 19:07 Time & Space Complexities 19:07 - 19:45 Wrap Up 19:45 - 20:10 This is the 0/1 Knapsack Problem. The key is to see the subproblems. DP is just something that takes seeing a lot of problems to get a solid grasp of. I still do not have a full grasp of the subject myself.
@leozhang1340
@leozhang1340 5 жыл бұрын
Hey man, what's V sub i? from your max() function?
@fpv_am
@fpv_am 4 жыл бұрын
Woooooooooooooooooooow, doode
@anshulabhinav13
@anshulabhinav13 4 жыл бұрын
Really love the passion u show for solving these problems....this is so hard to see these days...feels like u r in a zone or something when u r explaining....kudos & keep it up !! May u remain as excited !!
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
@@anshulabhinav13 yo
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
@@leozhang1340 The value of the i'th item
@nitinpathak8763
@nitinpathak8763 5 жыл бұрын
Someone give that man a medal
@BackToBackSWE
@BackToBackSWE 5 жыл бұрын
hahahaha, the comments I get keep getting funnier
@nitinpathak8763
@nitinpathak8763 5 жыл бұрын
Just came here to thank you again. It's because of your tutorials I got a job at Amazon 😎
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
@@nitinpathak8763 nice
@omi04
@omi04 4 жыл бұрын
@@nitinpathak8763 Hey, I have an interview scheduled. I'm done with round 0 (coding test) up for round 1-4. I could really use some tips. Thanks in advance...:)
@jashanbansal2613
@jashanbansal2613 4 жыл бұрын
@@omi04 Hey Omkar! How u applied for Amazon? Is it via referral or ...? Plz reply
@internetmaster1000
@internetmaster1000 3 жыл бұрын
I just came across your channel and I would like to show my appreciation for what you do. Your energy and enthusiasm when explaining these problems is contagious! Super helpful for someone who is learning programming from scratch. Thank you for your hard work!
@heyitsnikhil7956
@heyitsnikhil7956 4 жыл бұрын
give this man a beer!
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
yes
@dannythi
@dannythi 3 жыл бұрын
I love the way you teach. You break down the problem and at each point repeat what is happening so it stays in your head. Keep doing what you do.
@daisyallday12347
@daisyallday12347 5 жыл бұрын
Wow you're so brilliant. Thank you for slowing down this problem for me. I was so confused in class 😂
@BackToBackSWE
@BackToBackSWE 5 жыл бұрын
Tis' what we do
@ak-hj4xw
@ak-hj4xw 4 жыл бұрын
im sooooo glad I've found your channel, this problem was giving me a HEADACHE yesterday, and you're the only one who explained it in such a brilliant way so far!!! i hope I also understand the asymptotic notations from you, they've given me a heart ache for the ENTIRE semester ughhh!!
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
nice
@philipfemo8530
@philipfemo8530 3 ай бұрын
I have never been this stressed watching a programming problem explained lmao
@architjindal908
@architjindal908 4 жыл бұрын
I think the best channel related to coding. He explains everything in a really good way. Thanks a lot Benyam Ephrem.
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
thanks and thx
@amitpurohit8816
@amitpurohit8816 4 жыл бұрын
I have seen very few people with this level of passion for teaching....Thank you sir for teaching so passionately!!!
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
sure lol
@lavenderrose8201
@lavenderrose8201 3 жыл бұрын
*It will take a month to grasp this problem* Me: *Watching it one night before my exam* Though, I got the idea man! Thank you :)
@nabihs
@nabihs 4 жыл бұрын
Not having the items in order by weight is a great touch 👌 Thanks for doing that. Intuitively, people would assume they have to which really doesn't change the result.
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
yes
@mkelly66
@mkelly66 4 жыл бұрын
I love how you explain things! You don't skip steps and at the same time have great banter as you progress through even simple steps. It allows me to follow along and eventually grasp how the solution needs to be approached. I'm very impressed. Well done!
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
thanks and thanks
@estebanlopez1701
@estebanlopez1701 3 жыл бұрын
I love your passion, man. Not only great teaching, it's also fun to watch you!
@BackToBackSWE
@BackToBackSWE 3 жыл бұрын
yeah - I care lol
@mharris2751
@mharris2751 3 жыл бұрын
Hey man, you are a great teacher, just wanted to let you know. Your enthusiasm is infectious, and I will definitely look at more of your material in the future.
@BharCode09
@BharCode09 4 жыл бұрын
I think, to approach this problem from DP table perspective is a little difficult intuitively. My approach is, just recursively solving sub problems like Climbing stairs or Egg Dropping. First define *base cases* *Case1* : if the weight capacity is 0, then we can’t choose any item. Hence the optimum value is 0; *Case2* : if the number of items is 0, then we can’t choose any item. Hence the optimum value is 0; *Other cases* *Case3* : if the weight of the Nth Item is greater than the max weight capacity, then, we have only one option, i.e. NOT choose that item, but to choose from remaining(N-1) items for the same weight capacity. *Case4* : if the weight of Nth item is equal to or lesser than max weight, then we have the 2 options. Either to choose the item or Not to choose. But the decision to be made is depending on whether we get max value by choosing Nth Item or not choosing the item but choosing from the remaining (N-1) items. i.e If we choose Nth item, then value1 = (value Of Nth Item) + (optimum Value from remaining N-1 items for the remaining weight). If we don’t choose Nth item, then value2 = (optimum Value from remaining N-1 items for the max weight) Now our optimum value is max(value1,value2); private static int optimumValueRecursively(int n, int maxWeight ){ //Base cases 1 and 2 if(maxWeight==0 || i==0){ return 0; } //case 3 if(weights[n]>maxWeight){ return optimumValueRecursively2(n-1, maxWeight); } //case 4 int optimumValue = Math.max((values[n]+optimumValueRecursively(n-1, maxWeight-weights[n])), optimumValueRecursively(n-1, maxWeight)); return optimumValue; } There is no DP table involved in the above solution, DP table is useful when we consider memoization.
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
yes
@hamdyahmed1984
@hamdyahmed1984 4 жыл бұрын
You are the best one I learn from him because you focus on the idea of the solution, not the solution itself and memorizing it. Thank you for your efforts.
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
thanks
@uddipta_g8021
@uddipta_g8021 3 жыл бұрын
After multiple videos and almost giving up on it since a year, I finally understood 0/1 Knapsack.
@BackToBackSWE
@BackToBackSWE 3 жыл бұрын
great!
@arv_sajeev
@arv_sajeev 3 жыл бұрын
I love you energy and the enthusiasm you put in to make a person understand. It just really makes me wanna sit and listen. Thanks for videos like these :).
@BackToBackSWE
@BackToBackSWE 3 жыл бұрын
ye - good lol
@theweirdsideofyoutube8956
@theweirdsideofyoutube8956 4 жыл бұрын
This is what my algorithms class is missing
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
yes
@sarahli2933
@sarahli2933 4 жыл бұрын
The idea behind the algorithm design should be the core of an algorithm course. The video managed to do that. Bravo!
@neymarjr-sc3oi
@neymarjr-sc3oi 3 жыл бұрын
at the last moment when he says that "it tooks him almost 1 month to undestand" it gives me more satisfaction than anything because still i am thinking that i missed something about this problem i saw almost 15 video still didnt get it properly
@BackToBackSWE
@BackToBackSWE 3 жыл бұрын
yeah i aint smart lol
@brandonbarrett6730
@brandonbarrett6730 3 жыл бұрын
This is the probably the 4th or 5th explanation of the knapsack problem that I've watched in the past few days. THIS is one where I had the moment of epiphany where I said "OH... I get it." Thank you.
@BackToBackSWE
@BackToBackSWE 3 жыл бұрын
great
@choibreandan8656
@choibreandan8656 5 жыл бұрын
your explanations are much better than others teaching dp on youtube, not going to name names (I'm sure you know) and you deserve a medal
@BackToBackSWE
@BackToBackSWE 5 жыл бұрын
hahahaha, this is one of the top comments on the channel
@waterstones6887
@waterstones6887 4 жыл бұрын
every time he says it takes me a long time to grasp it. I think he just wants us to feel comfortable...
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
I mean yeah - things take me a while to grasp too
@abhisheksharma8374
@abhisheksharma8374 4 жыл бұрын
Man... The amount of effort that you put in these videos is literally unmatchable, and that has made these difficult-to-grasp concepts very intuitive! A big thanks to you!
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
nice, thx
@alks091
@alks091 4 жыл бұрын
Your videos rock man!! By far the clearer explanation of the Knapsack problem I have found in KZfaq. Keep doing the good work !!
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
ye
@rhythmpatel5665
@rhythmpatel5665 4 жыл бұрын
Amazing man! Especially how you dived deep into the logic of constructing this matrix. Thanks for this and all the other enriching videos!
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
thanks and sure
@joelcruz2873
@joelcruz2873 2 жыл бұрын
Whoever even thought of this original solution approach for these style of questions is a genius
@anushkachakraborty8635
@anushkachakraborty8635 4 жыл бұрын
Went across the internet could not find a better taught tutorial than this, hats off man!
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
welcome to the show
@vadersama9166
@vadersama9166 4 жыл бұрын
I'm almost crying after watching so many videos of explaining this problem and still couldn't understand it.. until this one! Thank you so much!
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
sure
@aadypillai5808
@aadypillai5808 3 жыл бұрын
your energy is off the charts and this video was amazing. tysm
@BackToBackSWE
@BackToBackSWE 3 жыл бұрын
lmao my b old video - angry time in this beings life
@sniro1984
@sniro1984 Жыл бұрын
I have seen maybe 20 videos on the knapsack problem, and this was the only one that made me understand it. Thank you so much.
@BackToBackSWE
@BackToBackSWE Жыл бұрын
Happy Holidays! Really glad to help 🎉 Thank you for subscribing. Do you know about the BacktoBackSWE 5 Day Free Mini Course? Check it out here - backtobackswe.com/
@secondsandthings
@secondsandthings 5 жыл бұрын
This is amazing, just wanted to say thanks. I've been struggling with understanding other explanations for a while now. This video really helped.
@BackToBackSWE
@BackToBackSWE 5 жыл бұрын
excellent
@shibah9345
@shibah9345 2 жыл бұрын
Thanks man, great work! Love the energy!!!
@phoneix24886
@phoneix24886 4 ай бұрын
Man i was about to give an algorithm lesson to college trainees at office tomorrow and I was finding it difficult on how to clearly and concisely approach knapsack dp without overwhelming them with info and random code. This dry run of yours is fantastic. I think I will just go with how you explained it. This is just great.
@lesteI
@lesteI 28 күн бұрын
I've struggled with the knapsack problem for so long. I learned a lot from your video. Thank you!
@hopechan697
@hopechan697 4 жыл бұрын
i really love the way you teach. It's really inspiring. hope you have a lot of lesson like this i love it and look forward to see your other video soon
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
thanks
@hulaalol
@hulaalol 4 жыл бұрын
after 12 seconds into the video I knew my hour long search for a REAL explanation was over... Thank you man, there should be more people like you in the field of computer science stuff...
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
thx
@PetiaDavidova
@PetiaDavidova 4 жыл бұрын
This is hands down the BEST explanation of this problem I have ever seen!!! I don't know if it's just me but generally I really struggle wrapping my head around the knapsack problem, I just never fully get i. This makes so much difference, thank you!!!
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
nice
@IanHuang-ch1cn
@IanHuang-ch1cn 8 ай бұрын
This is the best DP problem explanation video I've ever watched! I can say 90% of instructors in the universities couldn't do better than you bro. Salute! Hope you can continue to make awesome videos!
@ashishrahul4692
@ashishrahul4692 2 жыл бұрын
I must've watched 2 videos and read 3 articles about the Knapsack Problem, and still came to this video absolutely confused.....but this explanation was so clear that the Knapsack Problem & DP make sense to me now. Brilliant work explaining this solution 👏
@biswanathtewari9220
@biswanathtewari9220 4 жыл бұрын
i was stuck with this problem for way too long... none of them explained so deeply and simply.... u pointed out each and everything ..... brilliant man , just brilliant .... even geeksforgeeks could not help me .. thanks man
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
sure, you are welcome, go flourish in the world
@msquare91
@msquare91 4 жыл бұрын
You're the Sal Khan of programming interview concepts, my friend. Bless!
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
Sorta...he is way more pure. I just want to build a large, honest, and effective business that makes people's lives better. He is on another level of purpose and vision. I'd hope to be there someday.
@Paarthri
@Paarthri 3 жыл бұрын
Thanks bro!! You're the best this was an amazing video I finally understand this
@TheDktapang
@TheDktapang 2 жыл бұрын
love the passion and energy bro. Thanks so much
@NONAME_G_R_I_D_
@NONAME_G_R_I_D_ 3 жыл бұрын
I must say that you are a great great great teacher and we can sense how excited you are for helping us along the way! Thank you very much and I hope you will get super big because you deserved it!!!!!!!
@DeepakKumar-ow2jc
@DeepakKumar-ow2jc 3 жыл бұрын
I am regretting now why can't I able to find your channel 1 year back. Your content is really amazing, and you make me learn DP in such an easy way, before today, I always feared from DP, but now it looks cool to face and try to solve the problem with DP.
@BackToBackSWE
@BackToBackSWE 3 жыл бұрын
welcome
@nsiepmann
@nsiepmann 2 жыл бұрын
Thank you - this really helped me clarify this in my head!
@portlandsound1
@portlandsound1 4 жыл бұрын
Thank you so much for your explanation. I appreciate the passion you have for this topic, and the way you explain the reasoning behind the table you construct is so helpful!
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
thanks
@avijitpandey9655
@avijitpandey9655 3 жыл бұрын
I was having way too much of a hard time before discovering this. You're definitely in the zone after 12:21, and so was I by that point, this is a great video!
@khanhdovanit
@khanhdovanit 4 жыл бұрын
Thanks a bunch for your energetic and clear explanation! I love it. Keep doing your good work!
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
sure thanks
@adithyagowda4642
@adithyagowda4642 10 ай бұрын
Out of all the videos I watched, none explained why you go to the row above in the same column and why you go to the column left in the same row. Thank you for explaining this!!!
@muj99ali
@muj99ali 5 жыл бұрын
The best thing I find about your videos is that you show the whole thought process of solving a problem. I must say you are a lot better than Tushar Roy ! In fact I think you are the best Computer Science teacher on KZfaq.
@BackToBackSWE
@BackToBackSWE 5 жыл бұрын
haha, nah Tuschar Roy is the og...the Don might I say. And I'd agree with the last part :) Wish I had more time
@johetajava
@johetajava 3 жыл бұрын
I had to replay some parts of the video to really understand it but you gave us so much examples and decision makings that I could easily implement this in c++. Thanks for the really good quality content!
@valerianevarez3161
@valerianevarez3161 3 жыл бұрын
idk if you'll see this comment, but I read and watched a lot of videos about this problem, but yours was the most useful one. thank you so much!
@cameron9024
@cameron9024 4 жыл бұрын
I wish I could give this more than just one thumbs up, thank you for explaining this so clearly and concisely.
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
sure
@jxlim4613
@jxlim4613 3 жыл бұрын
This helps me a looooot! Thank you so much!
@fatemacherif5069
@fatemacherif5069 4 жыл бұрын
I love your enthusiasm in your videos, these videos are really really helpful, Thank you so much!
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
sure
@abhishekgopinath4608
@abhishekgopinath4608 3 жыл бұрын
Man you just made my day. Now I found what my motivation to study algorithms was missing. Great help!!!
@sabachar
@sabachar 5 жыл бұрын
Your explanations are on point! This helped me so much, thank you :)
@BackToBackSWE
@BackToBackSWE 5 жыл бұрын
nice
@MohitSinha4
@MohitSinha4 4 жыл бұрын
Your explanations are just awesome!!
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
good to hear
@VidsOfMeDoingStuff
@VidsOfMeDoingStuff 2 жыл бұрын
Thanks for putting this together. This video is excellent
@adimib
@adimib 3 жыл бұрын
Hello, I really enjoyed the video, but I was curious if it's possible and worth it to try and find an optimal order of the items' arrangement (maybe price per 1 unit of weight in this case)? Or since you have to explore the entire table it doesn't really matter what order you do it in?
@katiepoole653
@katiepoole653 4 жыл бұрын
I enjoyed watching this video. Your energy made it more interesting and I finally understood this concept.
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
Nice - and great to hear
@user-ov5nd1fb7s
@user-ov5nd1fb7s 3 жыл бұрын
Subscribed! This dude explains in a very understandable way.
@ak_allday__
@ak_allday__ 4 жыл бұрын
Thanks to you I just gained your 1 months understanding in 20 mins! Really Grateful!!!
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
sure
@Leraxcast
@Leraxcast 4 жыл бұрын
After watching several videos it finally clicked at this one. Thank you!
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
nice
@ishanshah3309
@ishanshah3309 4 жыл бұрын
The way of explanation of this guy is just awesome. I gone through few explanations but I found this best.
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
hello
@chrisogonas
@chrisogonas 3 жыл бұрын
Superb passionate delivery! Thanks
@Andratos95
@Andratos95 4 жыл бұрын
This is so superior to any other tutorial on this subject here. You explain it very well Sir, down to earth but not to the point where it's oversimplyfied. Richard Feynman would be proud.
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
thanks and dang
@seungjinkim8860
@seungjinkim8860 4 жыл бұрын
Thank you for your content! I have a question - in the coin chance problem we subtracted the amount by the new coin and moved left to the column but stayed in the same row. Here, we subtract the weight of the item from the weight constraint (moving left) but then go up one row to add to current item's value. I don't quite understand why we are doing this. What's the intuition behind this?
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
The subproblem weighs 2 choices, if we use the item we can't use it anymore and the weight left changes. If we do not use the item we just don't use it. These 2 subproblem answers are necessary to solve the subproblem we stand at.
@seungjinkim8860
@seungjinkim8860 4 жыл бұрын
@@BackToBackSWE Gotcha thanks for the reply! So if we allows replacements for this problem (unlimited number of each item) it is just like the coin change problem that allows unlimited number of each coin.
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
@@seungjinkim8860 yeah
@christiansakai
@christiansakai 5 жыл бұрын
I love all of your series on DP! Thank you!
@BackToBackSWE
@BackToBackSWE 5 жыл бұрын
No. Thank YOU for watching. Without viewers making meaning of this none sense I put out I am nothing. Thank you for giving my work meaning, it means a lot.
@christiansakai
@christiansakai 5 жыл бұрын
@@BackToBackSWE Thank you! It's currently the best series on DP yet on KZfaq!
@BackToBackSWE
@BackToBackSWE 5 жыл бұрын
@@christiansakai 👀👀
@strawberriecherrie
@strawberriecherrie 3 жыл бұрын
WOW! I finally understand! Amazing explanation
@ritwiksen1987
@ritwiksen1987 Жыл бұрын
The best explanation of the knapsack problem using DP that I got on the internet.
@urvashibiswal8821
@urvashibiswal8821 4 жыл бұрын
great explanation! thanks for such a good video on DP and the effort you put in to create each video.
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
thanks
@winter.bear.221
@winter.bear.221 4 жыл бұрын
I lost counts of how many times you saved my ass in CS class... you deserve every medal in education
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
glad ur safe
@winter.bear.221
@winter.bear.221 4 жыл бұрын
@@BackToBackSWE omg my idol replied xD
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
@@winter.bear.221 I reply to every comment i see
@tanweehan9105
@tanweehan9105 5 жыл бұрын
Hi thanks for your very clear explanation. I have a question, is it possible to return the different items you have chosen in your code rather than the maximum value. if so how?
@BackToBackSWE
@BackToBackSWE 5 жыл бұрын
Yes, you can trace the table backward. Consider what it would have taken to have a certain value in each cell. That will indicate what items we took and left.
@TuxHouseEdu
@TuxHouseEdu 4 жыл бұрын
THAAAAAAK YOU!!! I WAS TRYING 5 DAYS TO UNDERSTAND THAT WITH NO RESULT!!
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
great
@samarthtandale9121
@samarthtandale9121 9 ай бұрын
😮 this is pure gold on the topic man ❤
@sfman21
@sfman21 5 жыл бұрын
Excellent video. The way you explain things is so natural. Thx a lot!
@BackToBackSWE
@BackToBackSWE 5 жыл бұрын
Yeah, thanks, I'm sorry, my initial videos were very low quality in audio and lighting. I hope it helped.
@stephenotondi5584
@stephenotondi5584 3 жыл бұрын
You are honestly AMAZING.
@gurtagel
@gurtagel 5 жыл бұрын
Great video. The thing that took the longest time to click for me in this problem was in the case where the weight of the item was less than the current amount we are at. Was confused as to why we not only decrement column by weight, but ALSO decrement row by 1, until I realized that items cannot be reused. I was under the impression that we have infinite number of each item. Having only 1 of each item makes this make sense
@BackToBackSWE
@BackToBackSWE 5 жыл бұрын
Yeah, it is all about knowing how the subproblems decompose
@auto8ot644
@auto8ot644 5 жыл бұрын
Thanks bro! This is exactly what I had a problem understanding. Didn't click until I read that "items cannot be reused".
@tfysekis
@tfysekis Жыл бұрын
I dont know if you need reminder,but you hell helping a lot. Love your videos.
@BackToBackSWE
@BackToBackSWE Жыл бұрын
Thank you! Please enjoy a special code from us - backtobackswe.com/checkout?plan=lifetime-legacy&discount_code=thwmas321 🎉
@dephc0n1
@dephc0n1 5 жыл бұрын
Thank you for this! I have a b2b phone interview with Google in 3 weeks so I will be checking out most of your videos.
@BackToBackSWE
@BackToBackSWE 5 жыл бұрын
AWESOME!! Tell me how it goes!! Man...this is literally why I do this. Thank you for commenting. Thank you.
@dephc0n1
@dephc0n1 5 жыл бұрын
@@BackToBackSWE got denied by the hiring committee but I wouldn't have made it to the 7th round without your help. Thank you bro
@BackToBackSWE
@BackToBackSWE 5 жыл бұрын
@@dephc0n1 sure...you were my first ever real comment on the channel...pretty cool :) I remember you.
@brunogianarelli7621
@brunogianarelli7621 4 жыл бұрын
Excellent video! it helped me a lot!
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
nice
@goldengirlgains
@goldengirlgains 2 жыл бұрын
I come back to this channel every time i have interviews. Youre awesome
@BackToBackSWE
@BackToBackSWE 2 жыл бұрын
Thank You, Glad you liked it. Do check out backtobackswe.com/platform/content and please recommend us to your family and friends :)
@mustafamohammadi5741
@mustafamohammadi5741 4 жыл бұрын
Great Job. Clear and well explained.
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
thanks
@darshantsdarshan1
@darshantsdarshan1 4 жыл бұрын
This guy is a gem 💎! Cos I see the genuine interest in knowledge sharing 👍🏻
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
thanks haha, im here
@laleen123
@laleen123 4 жыл бұрын
This is awesome. Thank you for the detailed explanation. I also used "Grokking Algorithms" to consolidate my knowledge, especially to understand the concept of why we're going up one level (You're on 4max but the item 2 is 3lb, so we have 1 lb spare, (equates to going back three steps and looking at the corresponding value for item 1). Brilliant explanation. You're my hero!
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
sure and thanks.
@tanishaagrahari9289
@tanishaagrahari9289 4 жыл бұрын
u explain fabulously.. keep making such videos.. they r really helpful to us
@BackToBackSWE
@BackToBackSWE 4 жыл бұрын
ye
@alimaher8386
@alimaher8386 Жыл бұрын
Great as always
@jimmyjose99
@jimmyjose99 3 жыл бұрын
Great explanation, thanks for sharing!
@JCT836
@JCT836 Жыл бұрын
Bravo! Thank you for your great explanation!
@cusematt23
@cusematt23 10 ай бұрын
Really good. I didn't get what the algorithm did until you explained it. And you explained it extremely clearly.
@Qichar
@Qichar 2 жыл бұрын
This is a decent explanation, taken as a whole. My main advice to you is this: focus on why this works. Each dynamic programming problem has CRITICAL OBSERVATIONS that sets up the recurrence. In the 0-1 knapsack problem, it's essentially these observations: 1) For any given item, we can either choose to include or exclude it from the knapsack. 2) For any given state of knapsack containing items already (call weight kw and value kv), when considering a new item with weight iw and value iv, we only need to decide if adding the item would result in a better knapsack. So we are comparing 2 values: the kv at kw-iw, and the value of not taking the item (optimal solution for current weight). In essence, all dynamic programming solutions boil down to these 2 steps. First, we have to be able to conceptualize an enumeration of the possible solution space. In this case, it's pretty straightforward: shall we take the item or not? 0-1 problems typically lead to a O(2^n) time complexity for the brute force solution, which you did a good job identifying in your video. In the second step, we have to realize that an optimal solution for the next item does not need to consider all previous items, ONLY THE SOLUTION for the previous item/weight remaining combo in the knapsack. This is NOT trivial, and this is the CRITICAL OBSERVATION that needs to be made for this problem. Really, for programming interviews, time constraints can be unfortunate because this critical observation is like solving a riddle. It either happens, or it doesn't. Having seen the problem before makes it easy, but there's no surefire way to make the observation for problems you haven't seen before. Of course practice helps, since almost all DP problems use some kind of n-dimensional matrix to hold intermediate solutions. Sometimes we can walk backwards from imagining a table of solutions and then simply prove the observation implied by the table. When you started drawing the item / weight remaining matrix, I immediately started thinking to myself, "Is it the case that, knowing the optimal solution for a given weight remaining / value combo, I can determine the optimal solution plus the next item without considering all previous items?" Having experience proving logical theorems can help with this step. Any good dynamic programming tutorial needs to focus on these two steps. Otherwise, it will be confusing the for the student.
@yitingg7942
@yitingg7942 3 жыл бұрын
Can anyone please tell me which question is this on Leetcode ? I have been trying to find it but not sure which one is it.
@erpingzhang8128
@erpingzhang8128 Жыл бұрын
Bro, this video is the best explanation I've ever seen and this totally change my view to solve dynamic programming!
@BackToBackSWE
@BackToBackSWE Жыл бұрын
glad to know it helped
@wilsonemmanuel1352
@wilsonemmanuel1352 3 жыл бұрын
Thanks a lot. One knowledge to solve many problems. Similar approach to solving problems like "Coin change", "Shopping", etc. I prefer using the recursive DP. I could come up with solution in few minutes. Thanks for helping me see a different way to think about the problems.
@multicultures
@multicultures 5 жыл бұрын
Great work! Easy to understand and follow.
@BackToBackSWE
@BackToBackSWE 5 жыл бұрын
thanks
@g_stou
@g_stou 2 жыл бұрын
In my class I got the same but with also value constraint (target profit) and the table is filled with weights and the values are on the columns instead. Additionally, due to that difference, infinite value is used instead of 0, apart from the 1st column. But your explanation helped very much understanding the base algorithm. Amazing explanation, thank you!
@BackToBackSWE
@BackToBackSWE 2 жыл бұрын
Thanks buddy! To explore more content, head on to our subscription plan and avail 30% discount for some exclusive stuff b2bswe.co/3HhvIlV
The Change Making Problem - Fewest Coins To Make Change Dynamic Programming
23:12
4.5 0/1 Knapsack - Two Methods - Dynamic Programming
28:24
Abdul Bari
Рет қаралды 2,7 МЛН
Мы никогда не были так напуганы!
00:15
Аришнев
Рет қаралды 6 МЛН
Me: Don't cross there's cars coming
00:16
LOL
Рет қаралды 15 МЛН
The Knapsack Problem & Genetic Algorithms - Computerphile
12:13
Computerphile
Рет қаралды 225 М.
Mastering Dynamic Programming - How to solve any interview problem (Part 1)
19:41
Find The Longest Increasing Subsequence - Dynamic Programming Fundamentals
19:21
0-1 Knapsack problem - Inside code
10:54
Inside code
Рет қаралды 8 М.
0/1 knapsack problem-Dynamic Programming | Data structures and algorithms
27:31
Jenny's Lectures CS IT
Рет қаралды 1,1 МЛН
0/1 Knapsack problem | Dynamic Programming
13:29
WilliamFiset
Рет қаралды 143 М.
I gave 127 interviews. Top 5 Algorithms they asked me.
8:36
Sahil & Sarra
Рет қаралды 615 М.
3.1 Knapsack Problem - Greedy Method
15:30
Abdul Bari
Рет қаралды 2,2 МЛН
Здесь упор в процессор
18:02
Рома, Просто Рома
Рет қаралды 183 М.
ОБСЛУЖИЛИ САМЫЙ ГРЯЗНЫЙ ПК
1:00
VA-PC
Рет қаралды 1,6 МЛН