Let me give you an example of a variation on the normal subset-sum problem that I am trying to solve:
Given is a set S = {1,2,3,4,5,6,7,8,9} with the maximal capacity c0 = 40. Furthermore we have 3 additional constraints on 3 different subsets of S:
- S1 = {2,3,4} with constraint c1 = 5
- S2 = {3,4,5,6} with constraint c2 = 12
- S3 = {7,8,9} with constraint c3 = 25
The objective is to find a subset of S such that the total sum (of the included items) is maximized without exceeding ANY given constraint (c0 - c4)
Important:
- intersections are possible! (see S1 & S2)
- 3 is just an example for the count of constraints - it could be considerably more!
- although the items of S are integer values in this example, it could also be positive real numbers
Question: Does this particular subset-sum problem have a specific name and/or are there any papers/ literature reviews on this ?