bin packing with overlapping objects

前端 未结 2 1787
遥遥无期
遥遥无期 2021-02-11 04:13

I have some bins with different capacities and some objects with specified size. The goal is to pack these objects in the bins. Until now it is similar to the bin-packing proble

2条回答
  •  野的像风
    2021-02-11 05:18

    The answer is to use a kind of tree that captures the similarity of objects assuming that objects can be broken. Then run a greedy algorithm to fill the bins according to the tree. This algorithm has 3-x approximation bound. However, there should also be better answers.

    This method is presented in Michael Sindelar, Ramesh K. Sitaraman, Prashant J. Shenoy: Sharing-aware algorithms for virtual machine colocation. SPAA 2011: 367-378.

    I got this answer from this thread but just wanted to close this question by giving the answer.

提交回复
热议问题