The 0/1 Knapsack Problem (Demystifying Dynamic Programming)

แชร์
ฝัง
  • เผยแพร่เมื่อ 20 ธ.ค. 2018
  • 👉 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.
  • วิทยาศาสตร์และเทคโนโลยี

ความคิดเห็น • 674

  • @BackToBackSWE
    @BackToBackSWE  5 ปีที่แล้ว +74

    Table of Contents: (my bad if I'm loud, this video is old and the TH-cam 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 ปีที่แล้ว +1

      Hey man, what's V sub i? from your max() function?

    • @fpv_am
      @fpv_am 4 ปีที่แล้ว +1

      Woooooooooooooooooooow, doode

    • @anshulabhinav13
      @anshulabhinav13 4 ปีที่แล้ว +5

      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 ปีที่แล้ว +1

      @@leozhang1340 The value of the i'th item

  • @nitinpathak8763
    @nitinpathak8763 5 ปีที่แล้ว +439

    Someone give that man a medal

    • @BackToBackSWE
      @BackToBackSWE  5 ปีที่แล้ว +16

      hahahaha, the comments I get keep getting funnier

    • @nitinpathak8763
      @nitinpathak8763 5 ปีที่แล้ว +45

      Just came here to thank you again. It's because of your tutorials I got a job at Amazon 😎

    • @BackToBackSWE
      @BackToBackSWE  4 ปีที่แล้ว +5

      @@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 ปีที่แล้ว +5

    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!

  • @amitpurohit8816
    @amitpurohit8816 4 ปีที่แล้ว +6

    I have seen very few people with this level of passion for teaching....Thank you sir for teaching so passionately!!!

  • @daisyallday12347
    @daisyallday12347 5 ปีที่แล้ว +36

    Wow you're so brilliant. Thank you for slowing down this problem for me. I was so confused in class 😂

  • @dannythi
    @dannythi 3 ปีที่แล้ว +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 ปีที่แล้ว +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!!

  • @architjindal908
    @architjindal908 4 ปีที่แล้ว +44

    I think the best channel related to coding. He explains everything in a really good way.
    Thanks a lot Benyam Ephrem.

  • @mkelly66
    @mkelly66 4 ปีที่แล้ว +2

    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!

  • @heyitsnikhil7956
    @heyitsnikhil7956 4 ปีที่แล้ว +61

    give this man a beer!

  • @mharris2751
    @mharris2751 3 ปีที่แล้ว +2

    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.

  • @nabihs
    @nabihs 4 ปีที่แล้ว +9

    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.

  • @hamdyahmed1984
    @hamdyahmed1984 4 ปีที่แล้ว +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.

  • @arv_sajeev
    @arv_sajeev 3 ปีที่แล้ว +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 :).

  • @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/

  • @estebanlopez1701
    @estebanlopez1701 3 ปีที่แล้ว +27

    I love your passion, man. Not only great teaching, it's also fun to watch you!

  • @anushkachakraborty8635
    @anushkachakraborty8635 4 ปีที่แล้ว +1

    Went across the internet could not find a better taught tutorial than this, hats off man!

  • @aadypillai5808
    @aadypillai5808 3 ปีที่แล้ว +4

    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

  • @brandonbarrett6730
    @brandonbarrett6730 3 ปีที่แล้ว +1

    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.

  • @secondsandthings
    @secondsandthings 5 ปีที่แล้ว +3

    This is amazing, just wanted to say thanks. I've been struggling with understanding other explanations for a while now. This video really helped.

  • @vadersama9166
    @vadersama9166 4 ปีที่แล้ว +1

    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!

  • @rhythmpatel5665
    @rhythmpatel5665 4 ปีที่แล้ว +3

    Amazing man! Especially how you dived deep into the logic of constructing this matrix. Thanks for this and all the other enriching videos!

  • @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.

  • @alks091
    @alks091 4 ปีที่แล้ว +1

    Your videos rock man!! By far the clearer explanation of the Knapsack problem I have found in TH-cam. Keep doing the good work !!

  • @uddipta_g8021
    @uddipta_g8021 3 ปีที่แล้ว +3

    After multiple videos and almost giving up on it since a year, I finally understood 0/1 Knapsack.

  • @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!!!!!!!

  • @portlandsound1
    @portlandsound1 4 ปีที่แล้ว +1

    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!

  • @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 👏

  • @lavenderrose8201
    @lavenderrose8201 3 ปีที่แล้ว +7

    *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 :)

  • @biswanathtewari9220
    @biswanathtewari9220 4 ปีที่แล้ว +1

    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 ปีที่แล้ว +1

      sure, you are welcome, go flourish in the world

  • @choibreandan8656
    @choibreandan8656 5 ปีที่แล้ว +45

    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 ปีที่แล้ว +4

      hahahaha, this is one of the top comments on the channel

  • @lesteI
    @lesteI หลายเดือนก่อน

    I've struggled with the knapsack problem for so long. I learned a lot from your video. Thank you!

  • @hopechan697
    @hopechan697 4 ปีที่แล้ว +2

    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

  • @ishanshah3309
    @ishanshah3309 4 ปีที่แล้ว +1

    The way of explanation of this guy is just awesome. I gone through few explanations but I found this best.

  • @DeepakKumar-ow2jc
    @DeepakKumar-ow2jc 3 ปีที่แล้ว +1

    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.

  • @PetiaDavidova
    @PetiaDavidova 4 ปีที่แล้ว +1

    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!!!

  • @IanHuang-ch1cn
    @IanHuang-ch1cn 8 หลายเดือนก่อน +2

    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!

  • @msquare91
    @msquare91 4 ปีที่แล้ว +8

    You're the Sal Khan of programming interview concepts, my friend. Bless!

    • @BackToBackSWE
      @BackToBackSWE  4 ปีที่แล้ว +5

      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.

  • @katiepoole653
    @katiepoole653 4 ปีที่แล้ว +2

    I enjoyed watching this video. Your energy made it more interesting and I finally understood this concept.

  • @fatemacherif5069
    @fatemacherif5069 4 ปีที่แล้ว +1

    I love your enthusiasm in your videos, these videos are really really helpful, Thank you so much!

  • @khanhdovanit
    @khanhdovanit 4 ปีที่แล้ว +1

    Thanks a bunch for your energetic and clear explanation! I love it. Keep doing your good work!

  • @ak_allday__
    @ak_allday__ 4 ปีที่แล้ว +1

    Thanks to you I just gained your 1 months understanding in 20 mins! Really Grateful!!!

  • @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!

  • @avijitpandey9655
    @avijitpandey9655 3 ปีที่แล้ว +1

    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!

  • @philipfemo8530
    @philipfemo8530 3 หลายเดือนก่อน +1

    I have never been this stressed watching a programming problem explained lmao

  • @abhishekgopinath4608
    @abhishekgopinath4608 3 ปีที่แล้ว

    Man you just made my day. Now I found what my motivation to study algorithms was missing. Great help!!!

  • @hulaalol
    @hulaalol 4 ปีที่แล้ว +1

    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...

  • @cameron9024
    @cameron9024 4 ปีที่แล้ว +4

    I wish I could give this more than just one thumbs up, thank you for explaining this so clearly and concisely.

  • @abhisheksharma8374
    @abhisheksharma8374 4 ปีที่แล้ว +11

    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!

  • @sfman21
    @sfman21 5 ปีที่แล้ว +1

    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.

  • @dephc0n1
    @dephc0n1 5 ปีที่แล้ว +3

    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 ปีที่แล้ว +2

      AWESOME!! Tell me how it goes!! Man...this is literally why I do this. Thank you for commenting. Thank you.

    • @dephc0n1
      @dephc0n1 5 ปีที่แล้ว +1

      @@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 ปีที่แล้ว +2

      @@dephc0n1 sure...you were my first ever real comment on the channel...pretty cool :) I remember you.

  • @muj99ali
    @muj99ali 5 ปีที่แล้ว +2

    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 TH-cam.

    • @BackToBackSWE
      @BackToBackSWE  5 ปีที่แล้ว +1

      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

  • @ritwiksen1987
    @ritwiksen1987 ปีที่แล้ว

    The best explanation of the knapsack problem using DP that I got on the internet.

  • @wilsonemmanuel1352
    @wilsonemmanuel1352 3 ปีที่แล้ว +1

    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.

  • @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 :)

  • @Leraxcast
    @Leraxcast 4 ปีที่แล้ว +2

    After watching several videos it finally clicked at this one. Thank you!

  • @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 🎉

  • @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!!!

  • @neymarjr-sc3oi
    @neymarjr-sc3oi 3 ปีที่แล้ว +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

  • @shibah9345
    @shibah9345 2 ปีที่แล้ว

    Thanks man, great work! Love the energy!!!

  • @nsiepmann
    @nsiepmann 2 ปีที่แล้ว

    Thank you - this really helped me clarify this in my head!

  • @sabachar
    @sabachar 5 ปีที่แล้ว +2

    Your explanations are on point! This helped me so much, thank you :)

  • @darshantsdarshan1
    @darshantsdarshan1 4 ปีที่แล้ว +2

    This guy is a gem 💎! Cos I see the genuine interest in knowledge sharing 👍🏻

  • @Andratos95
    @Andratos95 4 ปีที่แล้ว +1

    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.

  • @urvashibiswal8821
    @urvashibiswal8821 4 ปีที่แล้ว +1

    great explanation! thanks for such a good video on DP and the effort you put in to create each video.

  • @FrequencyModulator
    @FrequencyModulator 4 ปีที่แล้ว +1

    I like how you explain. Clean and understandable English and lots of passion. Trully amazing!

  • @TuxHouseEdu
    @TuxHouseEdu 4 ปีที่แล้ว +3

    THAAAAAAK YOU!!!
    I WAS TRYING 5 DAYS TO UNDERSTAND THAT WITH NO RESULT!!

  • @cusematt23
    @cusematt23 10 หลายเดือนก่อน

    Really good. I didn't get what the algorithm did until you explained it. And you explained it extremely clearly.

  • @TheDktapang
    @TheDktapang 2 ปีที่แล้ว

    love the passion and energy bro. Thanks so much

  • @christiansakai
    @christiansakai 5 ปีที่แล้ว +4

    I love all of your series on DP! Thank you!

    • @BackToBackSWE
      @BackToBackSWE  5 ปีที่แล้ว +1

      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 ปีที่แล้ว +2

      @@BackToBackSWE Thank you! It's currently the best series on DP yet on TH-cam!

    • @BackToBackSWE
      @BackToBackSWE  5 ปีที่แล้ว

      @@christiansakai 👀👀

  • @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!

  • @theweirdsideofyoutube8956
    @theweirdsideofyoutube8956 4 ปีที่แล้ว +21

    This is what my algorithms class is missing

    • @BackToBackSWE
      @BackToBackSWE  4 ปีที่แล้ว +2

      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!

  • @user-ov5nd1fb7s
    @user-ov5nd1fb7s 3 ปีที่แล้ว

    Subscribed! This dude explains in a very understandable way.

  • @Paarthri
    @Paarthri 3 ปีที่แล้ว

    Thanks bro!! You're the best this was an amazing video I finally understand this

  • @salmankhurshid4410
    @salmankhurshid4410 3 ปีที่แล้ว +1

    His explanations are so good and crystal clear.

  • @BharCode09
    @BharCode09 4 ปีที่แล้ว +15

    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.

  • @currenluna
    @currenluna 3 ปีที่แล้ว +1

    Really solidified my understanding of the problem. Thanks for making this!

  • @erpingzhang8128
    @erpingzhang8128 ปีที่แล้ว

    Bro, this video is the best explanation I've ever seen and this totally change my view to solve dynamic programming!

  • @MohitSinha4
    @MohitSinha4 4 ปีที่แล้ว +1

    Your explanations are just awesome!!

  • @jxlim4613
    @jxlim4613 3 ปีที่แล้ว

    This helps me a looooot! Thank you so much!

  • @Allchemyst
    @Allchemyst 5 ปีที่แล้ว +2

    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 TH-cam, 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!

  • @chrisogonas
    @chrisogonas 3 ปีที่แล้ว

    Superb passionate delivery! Thanks

  • @VidsOfMeDoingStuff
    @VidsOfMeDoingStuff 2 ปีที่แล้ว

    Thanks for putting this together. This video is excellent

  • @jedgraves8399
    @jedgraves8399 2 ปีที่แล้ว

    Best explanation I've come across even with the weight/value confusion.

  • @mafaldasousa5880
    @mafaldasousa5880 3 ปีที่แล้ว +1

    Thanks for your enthusiam on this subject. I was dying looking at my books

  • @gurtagel
    @gurtagel 5 ปีที่แล้ว +3

    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 ปีที่แล้ว +2

      Thanks bro! This is exactly what I had a problem understanding. Didn't click until I read that "items cannot be reused".

  • @tanishaagrahari9289
    @tanishaagrahari9289 4 ปีที่แล้ว +1

    u explain fabulously.. keep making such videos.. they r really helpful to us

  • @winter.bear.221
    @winter.bear.221 4 ปีที่แล้ว +2

    I lost counts of how many times you saved my ass in CS class... you deserve every medal in education

    • @BackToBackSWE
      @BackToBackSWE  4 ปีที่แล้ว +1

      glad ur safe

    • @winter.bear.221
      @winter.bear.221 4 ปีที่แล้ว +1

      @@BackToBackSWE omg my idol replied xD

    • @BackToBackSWE
      @BackToBackSWE  4 ปีที่แล้ว

      @@winter.bear.221 I reply to every comment i see

  • @sagarkumar0190
    @sagarkumar0190 4 ปีที่แล้ว +1

    This is the best content for this problem on TH-cam. 👌

  • @vivekoberoi06
    @vivekoberoi06 5 ปีที่แล้ว +1

    Dynamic programming is making sense now. All thanks 2 u. As usual u rock.

  • @anirudhsharma5624
    @anirudhsharma5624 5 ปีที่แล้ว +1

    just loved the way you explained it...thanks a lot!!

  • @sukritkapil2562
    @sukritkapil2562 4 ปีที่แล้ว +2

    Crystal Clear explanation!! Really Helpful

  • @stephenotondi5584
    @stephenotondi5584 3 ปีที่แล้ว

    You are honestly AMAZING.

  • @multicultures
    @multicultures 5 ปีที่แล้ว +1

    Great work! Easy to understand and follow.

  • @jinny5025
    @jinny5025 3 ปีที่แล้ว

    You're always giving the best solution. Thanks for the video!👍

  • @laleen123
    @laleen123 4 ปีที่แล้ว +3

    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!

  • @nicholasnoproblem
    @nicholasnoproblem 4 ปีที่แล้ว +1

    This just makes DP make so much sense! Thanks!

  • @mustafamohammadi5741
    @mustafamohammadi5741 4 ปีที่แล้ว +1

    Great Job. Clear and well explained.

  • @reengineer2497
    @reengineer2497 8 หลายเดือนก่อน

    thank you so much for sharing this !! my search to understand this problem stops here.

    • @BackToBackSWE
      @BackToBackSWE  8 หลายเดือนก่อน

      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

  • @lennyatomz8389
    @lennyatomz8389 3 ปีที่แล้ว +1

    Outstanding work! :D
    Please continue to share your passion with the world, sir.