The 0/1 Knapsack Problem (Demystifying Dynamic Programming)

  Переглядів 199,621

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.

КОМЕНТАРІ: 671
@BackToBackSWE
@BackToBackSWE 5 років тому
Table of Contents: (my bad if I'm loud, this video is old and the UKposts 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 4 роки тому
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 4 роки тому
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 3 роки тому
@@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 3 роки тому
@@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!
@dannythi
@dannythi 2 роки тому
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.
@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
@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
@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.
@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
@architjindal908
@architjindal908 3 роки тому
I think the best channel related to coding. He explains everything in a really good way. Thanks a lot Benyam Ephrem.
@BackToBackSWE
@BackToBackSWE 3 роки тому
thanks and thx
@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
@rhythmpatel5665
@rhythmpatel5665 3 роки тому
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 3 роки тому
thanks and sure
@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
@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
@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
@heyitsnikhil7956
@heyitsnikhil7956 4 роки тому
give this man a beer!
@BackToBackSWE
@BackToBackSWE 4 роки тому
yes
@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
@alks091
@alks091 4 роки тому
Your videos rock man!! By far the clearer explanation of the Knapsack problem I have found in UKposts. Keep doing the good work !!
@BackToBackSWE
@BackToBackSWE 4 роки тому
ye
@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
@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
@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
@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!!!!!!!
@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!
@khanhdovanit
@khanhdovanit 3 роки тому
Thanks a bunch for your energetic and clear explanation! I love it. Keep doing your good work!
@BackToBackSWE
@BackToBackSWE 3 роки тому
sure thanks
@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
@amitpurohit8816
@amitpurohit8816 3 роки тому
I have seen very few people with this level of passion for teaching....Thank you sir for teaching so passionately!!!
@BackToBackSWE
@BackToBackSWE 3 роки тому
sure lol
@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/
@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
@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.
@phoneix24886
@phoneix24886 2 місяці тому
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.
@fatemacherif5069
@fatemacherif5069 4 роки тому
I love your enthusiasm in your videos, these videos are really really helpful, Thank you so much!
@BackToBackSWE
@BackToBackSWE 4 роки тому
sure
@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
@janel2715
@janel2715 4 роки тому
Your explanations are on point! This helped me so much, thank you :)
@BackToBackSWE
@BackToBackSWE 4 роки тому
nice
@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 👏
@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
@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
@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
@Allchemyst
@Allchemyst 4 роки тому
Fantastic articulation and great clarity! Taking the time to go through the entirety of the procedure is a very useful and often necessary part of the teaching process that, sadly, too many people forget, so props for giving that extra effort! Only thing holding you back, in my honest opinion, is that you speak way too quickly. On UKposts, people can pause and take a break (or re-run the video a few times), so it's not as dramatic as if this were a classroom, but too much energy and flow will detract from your otherwise remarkable clarity for people who have a harder time understanding the problem. Remember those people are trying to think while you talk, so they need as much breathing space as you can give them (without falling into the other extreme, of course). I would recommend experimenting with the way the video is cut. The montage is excellent, but it's clear it's arranged to create one massive, expertly flowing, high-speed delivery that may end up defeating itself by virtue of offering the info faster than it can be processed. Another suggestion would be to avoid correcting mistakes made while recording with white-on-white script. by the time the viewer sees it, then reads it, you run the risk of losing them, in part due to the technical nature of said corrections that inevitably detract from their attention, and to the speed of the delivery. And I'm not saying this to complain : this is by far one of the best explanations available on the net for this problem! There's clearly an immense amount of work both recording and post-prod that went into this, and you should be bloody proud of it! Thanks a lot for your work!
@BackToBackSWE
@BackToBackSWE 4 роки тому
thanks
@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
@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
@nsiepmann
@nsiepmann 2 роки тому
Thank you - this really helped me clarify this in my head!
@abhishekgopinath4608
@abhishekgopinath4608 3 роки тому
Man you just made my day. Now I found what my motivation to study algorithms was missing. Great help!!!
@shibah9345
@shibah9345 2 роки тому
Thanks man, great work! Love the energy!!!
@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 UKposts!
@BackToBackSWE
@BackToBackSWE 5 років тому
@@christiansakai 👀👀
@suramyasingh1353
@suramyasingh1353 4 роки тому
Wow. You made this look so easy! I can see a pattern 😃 Really appreciate your efforts! Also I am really curious about minimizing the space.. 🤔
@BackToBackSWE
@BackToBackSWE 4 роки тому
sure
@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
@vadersama9166
@vadersama9166 3 роки тому
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 3 роки тому
sure
@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
@Leraxcast
@Leraxcast 4 роки тому
After watching several videos it finally clicked at this one. Thank you!
@BackToBackSWE
@BackToBackSWE 4 роки тому
nice
@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
@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
@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".
@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
@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
@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.
@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!
@adithyagowda4642
@adithyagowda4642 8 місяців тому
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!!!
@tfysekis
@tfysekis 10 місяців тому
I dont know if you need reminder,but you hell helping a lot. Love your videos.
@BackToBackSWE
@BackToBackSWE 10 місяців тому
Thank you! Please enjoy a special code from us - backtobackswe.com/checkout?plan=lifetime-legacy&discount_code=thwmas321 🎉
@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!
@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.
@maheshvangala8472
@maheshvangala8472 4 роки тому
Initially I assumed dynamic programming as a mind blender remembering all tabular approaches practicing a bit But...... This one video changed the perspection of dynamic programming, how can we apply this approach to all other problems. Thanks a lot from bottom of my heart Please I request you to make more videos on dynamic programming. One who is perfect in dynamic programming is a master of Data structures and algorithms You are the one
@BackToBackSWE
@BackToBackSWE 4 роки тому
nice
@ak_allday__
@ak_allday__ 4 роки тому
Thanks to you I just gained your 1 months understanding in 20 mins! Really Grateful!!!
@BackToBackSWE
@BackToBackSWE 4 роки тому
sure
@IanHuang-ch1cn
@IanHuang-ch1cn 6 місяців тому
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!
@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
@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 :)
@mafaldasousa5880
@mafaldasousa5880 3 роки тому
Thanks for your enthusiam on this subject. I was dying looking at my books
@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
@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.
@currenluna
@currenluna 3 роки тому
Really solidified my understanding of the problem. Thanks for making this!
@BackToBackSWE
@BackToBackSWE 3 роки тому
great and sure
@darshantsdarshan1
@darshantsdarshan1 4 роки тому
This guy is a gem 💎! Cos I see the genuine interest in knowledge sharing 👍🏻
@BackToBackSWE
@BackToBackSWE 4 роки тому
thanks haha, im here
@goldengirlgains
@goldengirlgains 2 роки тому
I come back to this channel every time i have interviews. Youre awesome
@BackToBackSWE
@BackToBackSWE Рік тому
Thank You, Glad you liked it. Do check out backtobackswe.com/platform/content and please recommend us to your family and friends :)
@salmankhurshid4410
@salmankhurshid4410 3 роки тому
His explanations are so good and crystal clear.
@BackToBackSWE
@BackToBackSWE 3 роки тому
thanks
@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.
@jrseinc
@jrseinc 4 роки тому
your channel is so underrated man! Amazing Explination
@BackToBackSWE
@BackToBackSWE 4 роки тому
thx
@sahildhiman7675
@sahildhiman7675 4 роки тому
mah man is so pumped up 🔥🔥 while explaining the logics :D, The best part is to create a sense or feel of the solution,Great work dude keep it up
@BackToBackSWE
@BackToBackSWE 4 роки тому
hey
@sahildhiman7675
@sahildhiman7675 4 роки тому
@@BackToBackSWE will be glad to see more content with a little more frequency, 😅☺️ love ❤️ from India
@BackToBackSWE
@BackToBackSWE 4 роки тому
@@sahildhiman7675 ok
@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
@TuxHouseEdu
@TuxHouseEdu 3 роки тому
THAAAAAAK YOU!!! I WAS TRYING 5 DAYS TO UNDERSTAND THAT WITH NO RESULT!!
@BackToBackSWE
@BackToBackSWE 3 роки тому
great
@jinny5025
@jinny5025 3 роки тому
You're always giving the best solution. Thanks for the video!👍
@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?
@zahranajib5528
@zahranajib5528 3 роки тому
This is such a beautiful breakdown. Thanks friend!
@SR-we1vl
@SR-we1vl 4 роки тому
Best Explanation of 0/1 Knapsack Problem!! Keep up the good work like this always!❤🙌
@BackToBackSWE
@BackToBackSWE 4 роки тому
ye
@SR-we1vl
@SR-we1vl 4 роки тому
@@BackToBackSWE I want to work with you sir!
@BackToBackSWE
@BackToBackSWE 4 роки тому
@@SR-we1vl We are looking for smart people, we are building a new platform with a code editor and may need technical writers. If you want to join you can contact us.
@SR-we1vl
@SR-we1vl 4 роки тому
@@BackToBackSWE Sure sir! Love to work with you😘😘❤️
@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.
@amspercussion04
@amspercussion04 5 років тому
Great video dude! I would recommend to please also mention that, once we use an element in a knapsack, we don't use it again. And that is why when we use a weight, we subtract that weight from the current weight and add it to the weight in the row above it(because we should not use that weight again - meaning the value on the same row, when we subtract it) . And that is the subproblem we are trying to solve. It took me a while to get my head around that, I hope this would help someone who is having the same problem.
@BackToBackSWE
@BackToBackSWE 5 років тому
yeah, this was an early video, was still learning how to teach and put a lesson plan together
@amspercussion04
@amspercussion04 5 років тому
@@BackToBackSWE Love your videos man, keep making them!
@BackToBackSWE
@BackToBackSWE 5 років тому
@@amspercussion04 ok
@muj99ali
@muj99ali 4 роки тому
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 UKposts.
@BackToBackSWE
@BackToBackSWE 4 роки тому
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
@stanluo1025
@stanluo1025 2 роки тому
Absolutely love your videos. I have a questions: in the calculation table, say we want to get the value of V[2][3], then it's either a) take Item3, or b) don't take Item3 (V[1][3]). But in case b), looks we can only choose Item1 and Item2 as only they were used in previous calculation (Item4 is ignored). Then it sounds like "the maximum value when we don't choose Item3, but only considering previously used values". How does it work?
@ohhrelingo6271
@ohhrelingo6271 Рік тому
Thanks a lot sir very helpful explanation .Sir can we use the weights instead of value ($ profit) in the table?
@theweirdsideofyoutube8956
@theweirdsideofyoutube8956 4 роки тому
This is what my algorithms class is missing
@BackToBackSWE
@BackToBackSWE 4 роки тому
yes
@sarahli2933
@sarahli2933 3 роки тому
The idea behind the algorithm design should be the core of an algorithm course. The video managed to do that. Bravo!
@lennyatomz8389
@lennyatomz8389 3 роки тому
Outstanding work! :D Please continue to share your passion with the world, sir.
@BackToBackSWE
@BackToBackSWE 3 роки тому
thx and ok
@jxlim4613
@jxlim4613 3 роки тому
This helps me a looooot! Thank you so much!
@FrequencyModulator
@FrequencyModulator 4 роки тому
I like how you explain. Clean and understandable English and lots of passion. Trully amazing!
@BackToBackSWE
@BackToBackSWE 4 роки тому
thanks
@reengineer2497
@reengineer2497 6 місяців тому
thank you so much for sharing this !! my search to understand this problem stops here.
@BackToBackSWE
@BackToBackSWE 6 місяців тому
Happy Halloween 🎃 Thank you for your kind words, Reengineer! We'd love to offer you a 50% Off our exclusive lifetime membership just use the code SPOOKY50 - backtobackswe.com/checkout?plan=lifetime-legacy&discount_code=SPOOKY50
@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
@stephenotondi5584
@stephenotondi5584 3 роки тому
You are honestly AMAZING.
@JananiAnbarasan
@JananiAnbarasan 8 місяців тому
firstly, thanks for the video, its one of the most clear explanations out there. but i still have a question! say, we start with brute-force, how do we arrive at this DP solution? if i have a bag of capacity 4, how do i know i must first solve for a bag capacity of 1 first and then solve for a bag capacity of 2 and so on. how do i know this leads to the final solution?
@ritwiksen1987
@ritwiksen1987 Рік тому
The best explanation of the knapsack problem using DP that I got on the internet.
@VidsOfMeDoingStuff
@VidsOfMeDoingStuff 2 роки тому
Thanks for putting this together. This video is excellent
@user-ov5nd1fb7s
@user-ov5nd1fb7s 2 роки тому
Subscribed! This dude explains in a very understandable way.
@rperez125
@rperez125 5 років тому
Great video, an excellent explanation! Question, would you go for recursion in a real interview? I know that some problems are easier to code with recursion, it feels natural. But the interviewer might dislike your solution since it's susceptible to a stack overflow.
@BackToBackSWE
@BackToBackSWE 5 років тому
Depends on the question and how natural recursion can express the recurrence. If you understand the recurrence then you can just as easily do the iterative approach.
@saigundlapalli3548
@saigundlapalli3548 4 роки тому
The im feeling it edit is too real. I know exactly that feeling when you're in the flow of an explanation
@BackToBackSWE
@BackToBackSWE 4 роки тому
hahaha
@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!
Mastering Dynamic Programming - How to solve any interview problem (Part 1)
19:41
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 млн
The N Queens Problem using Backtracking/Recursion - Explained
14:29
Back To Back SWE
Переглядів 133 тис.
0/1 Knapsack problem | Dynamic Programming
13:29
WilliamFiset
Переглядів 132 тис.
The ARM chip race is getting wild… Apple M4 unveiled
4:07
Fireship
Переглядів 732 тис.
С Какой Высоты Разобьётся NOKIA3310 ?!😳
0:43
СЛОМАЛСЯ ПК ЗА 2000$🤬
0:59
Корнеич
Переглядів 2,1 млн
Клавиатура vs геймпад vs руль
0:47
Balance
Переглядів 944 тис.