Suppose I have some mobile phones that use some amount of data each month. There are 3 rate plans, each with a capacity and a monthly cost:
- 5MB, \$1 per device per month
- 25MB, \$4
- 50MB, \$7
The plans are "pooled" such that each device on a plan increases the capacity of that plan: i.e. a 5MB plan with 10 devices on it has a capacity of 50MB. An individual device does not have its own limit (a 5MB plan device can use more than 5MB/month), but the plan it's in does.
The goal is to optimize for minimum cost.
My question is: does this problem already have a name, or considered a particular knapsack/bin-packing variant?