The order of subsets is not important.
The order of elements in a particular subset should be in increasing order of the index.
The first line of input contains an integer 'N', which denotes the size of the array.
The second line contains 'N' single-space separated integers representing the elements of the array.
The third line contains a single integer 'K', which denotes the integer to which the subsets should sum to.
For each test case, print single-space separated integers of a subset of 'ARR' having sum = 'K'.
The output of each test case will be printed in a separate line.
You do not need to print anything, it has already been taken care of. Just implement the given function.
1 <= 'N' <= 16
- (10 ^ 6) <= ARR[i] <= (10 ^ 6)
- 16 * (10 ^ 6) <= 'K' <= 16 * (10 ^ 6)
Where ‘ARR[i]’ denotes the value for ‘ith’ element of the array ‘ARR’ and 'K' is the given sum.
Time Limit: 1 sec.
Recursively generate all the subsets and keep track of the sum of the elements in the current subset.
Subsets can be generated in the following way. For every element of the array, there are 2 options:
In any step, if the value of ‘K’ becomes 0, then we have found a subset which sums to ‘K’. We store all these subsets and return them.
The idea is to denote every subset as a binary representation of a positive integer. For example, let the size of a given array is 3 and an integer 5, which has a binary representation ‘101’, here ‘101’ means we take a subset which has elements 1st and 3rd(1 means include the element and 0 means not include the element). LSB of '101' represents the first element of the array and MSB represents the last element of the array.
Similarly, '111' means we have taken all the 3 elements in our subset.
So, if we have ‘n’ elements we need to have an integer that has its binary representation ‘n’ bits long, which is (2 ^ n) - 1. So, every integer from 0 to (2 ^ n) - 1 represents a different subset.
For checking, if an ith element is present in a subset or not we can say that if the ith bit from LSB is set then the ith element is present in a subset otherwise not.
Longest Subarray With Zero Sum
Merge Two Sorted Arrays Without Extra Space
Merge Two Sorted Arrays Without Extra Space
Ninja And The Strictly Increasing Array
Negative To The End
Find Duplicate in Array