High-multiplicity bin packing

From HandWiki

High-multiplicity bin packing is a special case of the bin packing problem, in which the number of different item-sizes is small, while the number of items with each size is large. While the general bin-packing problem is NP-hard, the high-multiplicity setting can be solved in polynomial time, assuming that the number of different sizes is a fixed constant.

Problem definition

The inputs to the problem are positive integers:

  • d - the number of different sizes (also called the dimension of the problem);
  • B - the bin capacity.
  • s1, ..., sd - the sizes. The vector of sizes is denoted by s.
  • n1, ..., nd - the multiplicities; ni is the number of items with size si. The vector of multiplicities is denoted by n.
    • n denotes the total number of items, that is, n = n1+...+nd.
    • V denotes the largest integer appearing in the description of the problem, that is, V = max(s1, ..., sd, n1, ..., nd, B)

The output is a packing - an assignment of the items to bins, such that the total size of items in each bin is at most B, and subject to this, the number of bins is as small as possible.

Example: suppose d=2, s1=30, s2=40, n1=n2=5, B=120. So there are n=10 items with sizes: 30,30,30,30,30,40,40,40,40,40. Then, a possible packing is: {30,30,30,30}, {40,40,40}, {30,40,40}, which uses 3 bins.

Configurations

A configuration is a set of items that can fit into a single bin. It can be represented by a vector of d integers, denoting the multiplicities of the different sizes in the configuration. Formally, for each configuration c we define an integer vector ac=ac,1, ..., ac,d such that acn and ac·s ≤ B.

In the above example, one of the configurations is c={30,40,40}, since 1*30+2*40 ≤ 120. Its corresponding vector is ac=(1,2). Other configuration vectors are (4,0), (3,0), (2,0), (2,1), (1,0), (1,1), (1,2), (0,1), (0,2), (0,3). If we had only three items of size 3, then we could not use the (4,0) configuration.

It is possible to present the problem using the configuration linear program: for each configuration c, there is a variable xc, denoting the number of bins in which c is used. The total number of bins used is simply the sum of xc over all configurations, denoted by 1·x. The total number of items used from each size is the sum of the vectors ac · xc over all configurations c. Then, the problem is to minimize 1·x such that the sum of ac · xc, over all configurations c, is at least n, so that all items are packed.

Algorithms

Basic algorithms

Suppose first that all items are large, that is, every si is at least e·B for some fraction e>0. Then, the total number of items in each bin is at most 1/e, so the total number of configuration is at most d1/e. Each configuration appears at most n times. Therefore, there are at most [math]\displaystyle{ n^{d^{1/e}} }[/math] combinations to check. For each combination, we have to check d constraints (one for each size), so the run-time is [math]\displaystyle{ d\cdot n^{d^{1/e}} }[/math], which is polynomial in n when d, e are constant.[1]

The main problem with this algorithm (besides the fact that it works only when the items are large) is that its runtime is polynomial in n, but the length of the input (in binary representation) is linear in log(V), which is of the order of magnitude of log(n).

Run-time polynomial in the input size

Filippi and Agnetis[2] presented an algorithm that finds a solution with at most OPT+d-2 bins in time O(poly(log V)). In particular, for d=2 different sizes, their algorithm finds an optimal solution in time O(log V).

Goemans and Rothvoss[3][4] presented an algorithm for any fixed d, that finds the optimal solution when all numbers are given in binary encoding. Their algorithm solves the following problem: given two d-dimensional polytopes P and Q, find the minimum number of integer points in P whose sum lies in Q. Their algorithm runs in time [math]\displaystyle{ (\log V)^{2^{O(d)}} }[/math]. Their algorithm can be adapted to other problems, such as Identical-machines scheduling and unrelated-machines scheduling with various constraints.

Rounding a general instance to a high-multiplicity instance

Several approximation algorithms for the general bin-packing problem use the following scheme:

  • Separate the items to "small" (smaller than eB, for some fraction e in (0,1)) and "large" (at least eB).
  • Handle the large items first:
    • Round the item sizes in some way, such that the number of different sizes is at most some constant d.
    • Solve the resulting high-multiplicity problem.
  • Allocate the small items greedily, e.g. with next-fit bin packing. If no new bins are created, then we are done. If new bins are created, this means that all bins (except maybe the last one) are full up to at least (1-e)B. Therefore, the number of bins is at most OPT/(1-e)+1 ≤ (1+2e)OPT+1.

The algorithms differ in how they round the instance.

Linear rounding

Lueker and de-la-Vega and [5] invented the idea of adaptive input rounding. Order the items by their size, and group them into 1/e2 groups of cardinality ne2. In each group, round the sizes upwards to the maximum size in the group. Now, there are only d=1/e2 different sizes. The solution of the rounded instance is feasible for the original instance too, but the number of bins may be larger than necessary. To quantify the loss, consider the instance rounded down to the maximum size in the previous group (the first group is rounded down to 0). The rounded-down instance D is almost equal to the rounded-up instance U, except that in D there are some ne2 zeros while in U there are some ne2 large items instead; but their size is at most B. Therefore, U requires at most ne2 more bins than D. Since D requires fewer bins than the optimum, we get that Bins(U) ≤ OPT + ne2, that is, we have an additive error that can be made as small as we like by choosing e.

If all items are large (of size at least eB), then each bin in OPT contains at most 1/e items (of size at least eB), so OPT must be at least en. Therefore, Bins(U) ≤ (1+e)OPT. After handling the small items, we get at most [math]\displaystyle{ (1+2e)\mathrm{OPT}+1 }[/math].

Geometric rounding

Karmarkar and Karp[6] present a more efficient rounding method which they call geometric rounding (in contrast to the linear rounding of de-la-Vega and Lueker). Based on these innovations, they present an algorithm with run-time polynomial in [math]\displaystyle{ n }[/math] and [math]\displaystyle{ 1/\varepsilon }[/math]. Their algorithm finds a solution with size at most [math]\displaystyle{ \mathrm{OPT} + \mathcal{O}(\log^2(\mathrm{OPT})) }[/math].

Improvements

This technique was later improved by several authors:

  • Rothvoss[7] presented an algorithm that generates a solution with size at most [math]\displaystyle{ \mathrm{OPT} + O(\log(\mathrm{OPT})\cdot \log\log(\mathrm{OPT})) }[/math].
  • Hoberg and Rothvoss[8] improved this algorithm to generate a solution with size at most [math]\displaystyle{ \mathrm{OPT} + O(\log(\mathrm{OPT})) }[/math]. The algorithm is randomized, and its running-time is polynomial in the total number of items.

See also

  • Cutting stock problem - similar to high-multiplicity bin-packing, but the goal is to minimize the total amount of wasted space in each bin, rather than the number of bins. Moreover, in some variants, the number of items from each size is not fixed, but can move between some given lower and upper bounds.

References

  1. Claire Mathieu. "Approximation Algorithms Part I, Week 3: bin packing". https://www.coursera.org/learn/approximation-algorithms-part-1/home/week/3. 
  2. Filippi, Carlo; Agnetis, Alessandro (2005-09-01). "An asymptotically exact algorithm for the high-multiplicity bin packing problem" (in en). Mathematical Programming 104 (1): 21–37. doi:10.1007/s10107-004-0567-y. ISSN 1436-4646. https://doi.org/10.1007/s10107-004-0567-y. 
  3. Goemans, Michel X.; Rothvoß, Thomas (2013-12-18), "Polynomiality for Bin Packing with a Constant Number of Item Types", Proceedings of the 2014 Annual ACM-SIAM Symposium on Discrete Algorithms (SODA), Proceedings (Society for Industrial and Applied Mathematics): pp. 830–839, doi:10.1137/1.9781611973402.61, ISBN 978-1-61197-338-9, https://epubs.siam.org/doi/abs/10.1137/1.9781611973402.61, retrieved 2021-08-17 
  4. Goemans, Michel X.; Rothvoss, Thomas (2020-11-07). "Polynomiality for Bin Packing with a Constant Number of Item Types". Journal of the ACM 67 (6): 38:1–38:21. doi:10.1145/3421750. ISSN 0004-5411. 
  5. Fernandez de la Vega, W.; Lueker, G. S. (1981). "Bin packing can be solved within 1 + ε in linear time" (in en). Combinatorica 1 (4): 349–355. doi:10.1007/BF02579456. ISSN 1439-6912. 
  6. Karmarkar, Narendra; Karp, Richard M. (November 1982). "An efficient approximation scheme for the one-dimensional bin-packing problem". 23rd Annual Symposium on Foundations of Computer Science (SFCS 1982): 312–320. doi:10.1109/SFCS.1982.61. https://ieeexplore.ieee.org/document/4568405/references#references. 
  7. Rothvoß, T. (2013-10-01). "Approximating Bin Packing within O(log OPT · Log Log OPT) Bins". 2013 IEEE 54th Annual Symposium on Foundations of Computer Science. pp. 20–29. doi:10.1109/FOCS.2013.11. ISBN 978-0-7695-5135-7. https://ieeexplore.ieee.org/document/6686137. 
  8. Hoberg, Rebecca; Rothvoss, Thomas (2017-01-01), "A Logarithmic Additive Integrality Gap for Bin Packing", Proceedings of the 2017 Annual ACM-SIAM Symposium on Discrete Algorithms, Proceedings (Society for Industrial and Applied Mathematics): pp. 2616–2625, doi:10.1137/1.9781611974782.172, ISBN 978-1-61197-478-2