Skip to content
Advertisement

count of subsets which sums upto given number(repetition is allowed). Not getting correct ouput

JavaScript

JavaScript

whats wrong with this code?

It is similar to the sum of subset problem. The only difference here is that we have infinite supplies of array elements. My output:
7 1
7 1
5 3
5 3
5 1 1 1
5 3
5 3
5 1 1 1
3 3 1 1
3 3 1 1
3 1 1 1 1 1
3 1 1 1 1 1
1 1 1 1 1 1 1 1
13
I am printing all combinations that the code is counting for refernce. Some combinations are printed twice or thrice. What changes should I do to skip repeated combinations??

JavaScript

Advertisement

Answer

Note that 1,7 and 7,1 are both the same subset that sums to 8.

We can represent the subset as a Map<Integer, Integer> where:

  • Key – element from arr.
  • Value – count of uses.

With this representation, both 1,7 and 7,1 will be represented as the Map= {1:1, 7:1} (keys are not ordered in Map).

We can store unique subsets in Set<Map<Integer, Integer>>.

Now it’s straightforward to code:

JavaScript

Output:

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement