Let us assume we have two backpacks and we are filling both of them at same time and whatever is leftover will be filled in third backpack.
Now we will pick an item and see if it fits to first or second backpacks.
Let us assume,
Now at the end, we will check that if we have W/3, W/3 in both backpacks. This will ensure us that we have W/3 in third backpack. Herefor input the answer is yes, because there is the partitionDynamic programming approach always gives the accurate or correct answer. In dynamic programming have to compute only distinct function call because as soon as compute and store in one data structure so that after this reuse afterward if it is needed.
On the other hand, for input the answer is a dynamic programming algorithm for that runs in time polynomial in n and in
First let us define the initial condition:
Base case will be,
Recurrence Relation is:
,
For the case,
And, the value defined as,
in time polynomial inn,
Thus, Subproblem is:
Here, as let’s fill two backpacks in runtime, and we are partitioning for some integers, our time complexity becomes This is the desired time complexity.