Partition equal subset sum | Equal sum partition | Dynamic Programming | Leetcode

แชร์
ฝัง
  • เผยแพร่เมื่อ 24 พ.ย. 2024

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

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

    For all those who did not understand why he did not initialize 0th column elements to true, so he basically tried to include that using
    ( nums[ i-1 ] == j ) condition which anyways means the same. Even though the explanation was great, but in my opinion it is not a good practice to write the code like this, as the code is not understandable for the one who is seeing that the first time and it is not right to put up conditions in that manner (atleast that's what I think) even if it means the same. Instead it would be better for you to separately initialize your base case like this. This way you can relate to subset sum even more.
    for(int j = 0; j

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

      Why will u make the whole first column true?

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

    Just Similar to Subset Sum Problem Python code
    No need to pass 0 or n-1 as a parameter easy to track the process tree
    Hope it helps :)
    def canPartition(arr):

    n = len(arr)
    if sum(arr) % 2 != 0:
    return False
    comp_sum = sum(arr) // 2

    def Bottom_up(n, arr, comp_sum, dp):

    for i in range(1, n+1):
    for j in range(1, comp_sum+1):
    if j < arr[i-1]:
    dp[i][j] = dp[i-1][j]
    else:
    dp[i][j] = max(dp[i-1][j], dp[i-1][j-arr[i-1]])

    col = comp_sum
    row = n

    dp = [[0 for i in range(col+1)] for j in range(row+1)]
    dp[0][0] = 1

    for i in range(1, row+1):
    dp[i][0] = 0

    for i in range(1, col+1):
    dp[0][i] = 0
    Bottom_up(n, arr, comp_sum, dp)

    return dp[row][col]

  • @ADITYASINGH-og9ml
    @ADITYASINGH-og9ml 4 ปีที่แล้ว +22

    Can you give a pdf of all the important questions of all topics such that it is the most important from your point of view as important for placement. This will really help for us as there are so many questions we can not do all question.

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

      R u placed

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

    One of mine worst nightmare about dp is finally gone with your dp playlist. Thank you

  • @UEC_UdayanBiswas
    @UEC_UdayanBiswas 2 ปีที่แล้ว +1

    bhaiya, you don't know how much you helped me to unederstand dynamic programming, i searched so many vedioes but at last found yours channel. Can't describe but thank you❤️.

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

    I couldn't comprehend those top-voted answer in the leetcode discussion.
    But your approach I understood, thanks.

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

    Wow! explained it clear as a crystal! Thank you very much surya!

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

    Don't waste your time in watching this video. Just focusing on the odd and even sum concept in most part of this video instead of explaining the concept for this question.

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

    I'm following u for quite a long time, u r doing a great work ,keep doing what u r doing

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

    Great explanation!!

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

    For this one, if you don't pay attention to the word "partition" , you could be easily misled to think any two sets are fine even if there are still elements remaining. So keep in mind that all elements must be included in one set or the other. It's also not intuitive that this implies half the sum of the all elements is the target value and the natural instinct would be to leave that unknown only verifying when all the elements have been consumed. This wouldn't then be Knapsack.

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

    Keep making these videos. really helpful 👍

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

    After watching the last video of subset-sum, I was able to solve this myself. Thank you so much man, your videos are great.

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

    Great explaination sir

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

    Crystal clear explanation 👌

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

    We can replac
    if(nums[i-1]==j)
    dp[i][j]=true;
    Condition by simply assigning
    dp[0][0]=true
    in starting.

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

    One doubt, In this code you filled all the first row(i=0) and first column(j=0) to false, but in sub set problem you filled only the first row(i=0) to false because sum(>=1) can not be formed with taking zero elements, and first column(j=0) to true becuase sum = 0 can be form without taking any elements. So why this change ? Thank you

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

      The question mentions that you will be provided with an array that contains only positive integers. This means that the sum of the array will never be 0, which implies that sum/2 will also never be 0. You also need a minimum of 2 elements in the array in order to be able to split it. Therefore, all the values in i = 0 ( i.e., number of elements) row will be false, and all the values in j = 0 (i.e., sum = 0) column will also be false.

    • @RG-yj4cb
      @RG-yj4cb 3 ปีที่แล้ว

      @@anandravindran5160 thanks for the comment, I was also getting confused there. And, @TechDose has not mentioned this subtlety in the video leaving viewers not grasping all aspects of the problem.

    • @RG-yj4cb
      @RG-yj4cb 3 ปีที่แล้ว

      Also, peeps note that Subset Sum Code will also work too!

    • @RG-yj4cb
      @RG-yj4cb 3 ปีที่แล้ว

      DP table with SubsetSum code applied on current que:
      1 0 0 0 0 0
      1 1 0 0 0 0
      1 1 1 1 0 0
      1 1 1 1 1 1
      1 1 1 1 1 1
      DP table with recommended code of TechDose:
      0 0 0 0 0 0
      0 1 0 0 0 0
      0 1 1 1 0 0
      0 1 1 1 1 1
      0 1 1 1 1 1

  • @AmitKumar-fz3ec
    @AmitKumar-fz3ec 3 ปีที่แล้ว +2

    Thanks , its helping me build my intuition towards handling these kinds of questions.

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

    Thank you so much. You are doing a great job. This video helped me a lot

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

    your all videos are great brother

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

    Is it necessary condition that the the given array should be a union of subsets with equal sum?????

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

    can u plz make video for Partition to K Equal Sum Subsets?

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

    With the subset sum problem.. we are just preparing S1 with items with sum equals to sum/2.. and pushing other items to S2 (assuming). But what if items in S2 are not forming sum/2. We are not checking If both sets forming sum/2

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

    Sir can we print two subsets that form the solution using DP approach??

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

    is there any need to mem.clear() ? anything it will do with complexity?

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

    It however fails this particular hidden test case:
    N = 3
    arr[ ] ={ 856, 404, 278}; wherein although the sum of the elements results in an even number (1538), none of the combinations whilst being put in either subset totals up to 769 (sum/2). Would appreciate it if you could clear this out for me as I've been stuck at this for quite sometime now.

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

    What is the problem is slightly modified? Can the array be partitioned into 2 parts of equal sum,
    1. Given we can leave some of the elements in the array.
    2. Element can be part of only one subset and a single occurrence of each element obviously?
    Can you please share your thoughts on this?

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

      Then this problem will get modified to find the number of times a sum X can occur from subsets of a given set. If sum X occurs more than 1 time then return True. I will also show this variation in upcoming video.

  • @Jay-vc8jd
    @Jay-vc8jd 4 ปีที่แล้ว

    can we use Prefix indexing in solving this problem??

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

    is the base condition in the code correct for j==0 ? which is different from sub set problem. because of which we need to add 3rd additional check, we can set T for j=0.

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

    at 11:21 . memo is storing the integer values at first? how are you comparing it with -1? at line 10? you are storing the boolean value from the subset sum subproblems, but you are comparing with -1? we cant return a integer value to a boolean type function, what are you doing?
    even in line 13, its the same conversion of data type issue

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

    we can use 1 -d array to optimize the space.
    When i am trying the logic in 1-D array i am getting worng answer for [1,2,5]..
    Can you tell me what's wrong in my logic?
    boolean partition[]= new boolean[sum+1];
    partition[0]=true;
    for(int num:nums){
    for(int s=0;s

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

    How can we do it with 1D boolean array. I have a doubt in 1D array approach.
    please explain that approach in further videos..
    Thank you.

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

    what if no. of subsets is 3 what should we change?

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

    can we track the subsets????

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

    In the memo approach ,mem is a int type and subsetSum function returns a boolean type .if(mem[pos][sum]!=-1) return mem[pos][sum]; Is this ok ?

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

      Yea. As long as values are 0 and 1.

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

      Would work for C/C++ ,Wouldn't work for Java

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

    intuition op 🔥🔥

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

    hii i have a doubt isnt for the target 0 we should have i values true?

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

    Great explanation,sir. I have a doubt. Sir aren't we taking dp[0][0]=false in the c++ code for dp table whereas it should be true?

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

      The reason for that is,We cannot have the required sum zero and obtain that by any number of elements,Because that would be an empty set (not taking those elements),So we need to atleast be able to choose one element to obtain a proper subset,So,The modification from the subset sum problem would be this because not choosing something does not work here!

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

    Pls tell me what is spacce complexity

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

    sir,can you solve subset of
    A=(1,2,3)

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

    sir in bottom up approach does that base case wrk sir ? because we should fill the table as
    T F F F F F .....
    T
    T
    T
    T as we did in SS problem.... bcz when i==0, there are no elements therefore we can make only sum 0, so that frst row is
    T F F F F .....
    and if sum is 0, we can frm it anyways therefore first col is
    T
    T
    T.
    .....
    how will btm up code in yours case give crct ans sir?? please correct me if am wrng sir.

  • @Sky-nt1hy
    @Sky-nt1hy 3 ปีที่แล้ว +1

    Hi !
    I have one question. Doesn't it have to be if(j==0) dp[i][j]=true? in line 48? Array is initialized with false so can would this code satisfy the base conditions (j==0 -> dp[i][j]=true)?
    Thank you!

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

      Yes same doubt, do you know the reason? Thank you

    • @aravinth.s
      @aravinth.s 3 ปีที่แล้ว

      Yes ,same doubt

    • @JJ-qv8co
      @JJ-qv8co 3 ปีที่แล้ว +1

      Dear chingling,aravind,manav,
      It is the same logic as before, the difference is that here for the case where nums[i-1] == j , it directly assigns true but earlier it used to check in the table[i-1][0] column to get True.
      So both are correct ways to write the subset sum code.
      Hope this helps,
      Max Andrew Goliath II,
      CTO, Dynamax Technologies,
      California, USA

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

      yes, I think its wrong. I think this has to be the case for base cases:
      for i in range(n+1):
      for j in range(w+1):
      if i == 0 and j == 0:
      dp[i][j] = True

      elif j == 0:
      dp[i][j] = True

      elif i == 0:
      dp[i][j] = False

  • @SonuSharma-fc9hd
    @SonuSharma-fc9hd 3 ปีที่แล้ว

    Sir can you give the name of your software which you are using ..??
    i like your software of teaching

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

    Tech dose is op

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

    Can you make video on, find median in a matrix of R*C dimensions where all rows are sorted and R*C is odd.

  • @Phoenix-xi2gy
    @Phoenix-xi2gy 4 ปีที่แล้ว

    Sir, I have a Problem request - Kth Largest sum contiguous subarray. I was able to solve it using heap. But i am not able to understand its optimised solution.. I would be really grateful if u helped

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

      Do it with Sliding Window method. The time complexity will be O(n). Hope that helps😃

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

    ehrenmann

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

    cant understand how this statement works num[pos][sum]=subset(nums,n,pos+1,sum-num[pos]) || subset(nums,n,pos+1,sum)
    i have never came across statement like this can anyone please help!! using the or operator

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

      Or will return true if there exists atleast one possible path (by including or excluding the present item). So we need to take OR.

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

      @@techdose4u oh ok thanks sir

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

      pls upload videos daily

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

      pls upload videos daily

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

    I did exactly the same but TLE!!!! 的😭😭😭😭

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

      Ohoo....Apart from doing problems, do read your messages too 😂

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

      @@techdose4u Messages ?

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

      @YTFish G Check your📱😆

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

    This solution isnt even accepted by leetcode anymore bruh