Bin-Completion Algorithms for Multicontainer Packing and Covering Problems
Total Page:16
File Type:pdf, Size:1020Kb
Bin-Completion Algorithms for Multicontainer Packing and Covering Problems Alex S. Fukunaga, Richard E. Korf Computer Science Department University of California, Los Angeles [email protected], [email protected] Abstract In this paper, we consider complete algorithms for finding optimal solutions to multicontainer packing problems. Multi- Bin-completion, a bin-oriented branch-and-bound container packing problems are generally strongly NP-hard approach, was recently shown to be promising for [Garey and Johnson, 1979] (including all of the problems the bin packing problem. We propose several im- covered in this paper). Therefore, state of the art, complete provements to bin-completion that significantly im- algorithms for finding optimal solutions are based on branch- proves search efficiency. We also show the gen- and-bound. In contrast, note that single-container problems erality of bin-completion for packing and cover- such as the classical 0-1 knapsack problem are weakly NP- ing problems involving multiple containers, and hard, and pseudopolynomial time dynamic programming al- present bin-completion algorithms for the multiple gorithms exist (c.f. [Kellerer et al., 2004]). knapsack, bin covering, and min-cost covering (liq- Previous branch-and-bound algorithms for these problems uid loading) problems that significantly outperform have tended to be “item-oriented”. For example, the classi- the previous state of the art. However, we show that cal algorithm for bin packing is the Martello and Toth algo- for the bin packing problem, bin-completion is not rithm [Martello and Toth, 1990]. Items are considered one competitive with the state of the art solver. at a time. Each node in the search corresponds to a decision regarding the assignment of an item to some non-full con- tainer. In contrast, bin-completion is a “bin-oriented” branch- 1 Introduction and-bound strategy, where a node represents an assignment Many NP-hard problems involve packing some set of dis- of a set of items to a single container. In addition to standard crete objects into multiple containers (“bins”). In one class branch-and-bound pruning methods, a combinatorial domi- of problems, the objective is to pack some items into a set of nance criterion is used to prune search. containers without exceeding the containers’ capacities. In a This paper begins by reviewing the previous work on bin- related class of problems, the goal is to cover a set of con- completion. We then propose several improvements, in- tainers by filling them up to at least some minimal level using cluding a generalization of the nogood pruning method pro- a set of items. When both the containers and the items are posed in [Korf, 2003] that significantly improves search effi- modeled as one-dimensional objects (possibly with an associ- ciency. We demonstrate the generality of the bin-completion ated cost/value function), we refer collectively to these prob- approach by presenting new bin-completion algorithms for lems as one-dimensional, multicontainer packing and cover- the multiple knapsack, bin covering, and min-cost covering ing problems, or multicontainer packing problems in short. problems that significantly outperform the state of the art al- Multicontainer packing problems are ubiquitous, and model gorithms. many AI applications including the allocation and rationing of resources or tasks among a group of agents, as well as op- 2 Bin-Completion erations research problems such as cargo loading and trans- Bin-completion is a bin-oriented branch-and-bound strategy port. that exploits dominance properties to reduce the search space. The most widely studied instance of a problem in this class For clarity, we describe the bin-completion algorithm and our is the bin packing problem: Given a set of items (numbers), extensions in the context of the bin packing problem due to its and a fixed bin capacity, assign each item to a bin so that the familiarity and simplicity, although the focus of our empirical sum of the items assigned to each bin does not exceed the bin work is on other multicontainer problems. capacity. For example, given the set of items 6, 12, 15, 40, A feasible set is a set of items whose sum satisfies the ca- 43, 82, and a bin capacity of 100, we can assign 6, 12, and pacity constraint (i.e., does not exceed the bin capacity). We 82 to one bin, and 15, 40, and 43, to another, for a total of say that a feasible set or bin assignment is maximal if no addi- two bins. This is an optimal solution to this instance, since tional item can be added to the set without making the set in- the sum of all the items, 198, is greater than 100, and hence feasible. The items are sorted in decreasing order of size. We at least two bins are required. then generate maximal, feasible sets that include the largest item. If there is more than one such set, the search may branch was apparently not investigated further until recently. at that point. Each node of the search tree, except the root The BISON algorithm for bin packing by Scholl, Klein, node, represents a complete, feasible assignment of items to and Jurgens [Scholl et al., 1997] is a hybrid algorithm that in- a particular bin. The children of the root represent different tegrates a suite of complex lower bounding procedures, upper ways of completing the bin containing the largest item. The bounding heuristics, and a branch-and-bound algorithm. The nodes at the next level represent different complete, feasible branch-and-bound component of BISON is a bin-completion sets that include the largest remaining item, etc. The depth algorithm where each node corresponds to a maximal, feasi- of any branch of the tree is the number of bins in the cor- ble bin assignment. A very limited form of the Martello-Toth responding solution. Bin-completion is a branch-and-bound dominance criterion is applied, as follows. If a maximal, fea- algorithm. It starts with an upper bound, such as the best- sible bin assignment has a pair of items that can be replaced fit decreasing solution, and applies a lower-bound heuristic by single unassigned item without decreasing the sum of the function to prune the search. Rather than assigning items one assignment, then it is dominated, and this node can be pruned. at a time to bins, it branches on the different maximal, feasi- Korf implemented a bin-completion algorithm for bin ble sets that can be assigned to each bin. packing using the full Martello and Toth dominance cri- The key to making bin-completion efficient is the use of a terion, and showed that it significantly outperformed the dominance criterion on the maximal, feasible sets that allows Martello-Toth item-oriented branch-and-bound algorithm us to only consider a small subset of them. [Korf, 2002]. Further improvements were achieved by using ¡ Let and ¡ be two feasible sets. If the elements in can a more efficient algorithm for generating the undominated bin be partitioned into subsets, and these subsets can be matched assignments, and nogood pruning (see below) [Korf, 2003]. to the elements of such that the sum of the elements in each subset doesn’t exceed the corresponding element of , 3 Extensions to Bin-Completion then set dominates set ¡ . In other words, if the elements 3.1 Nogood Dominance Pruning of ¡ can be packed into bins whose capacities are the ele- ments of , then set dominates set ¡ . For example, let Suppose we have a bin packing instance with the numbers £¢¥¤§¦©¨ ¨ ¨ ¢¤ ¨ ¨ ¦ ¡ and let . Parti- 10,9,8,7,7,3,3,2,2, and bin capacity c=20. Let ¡%$ represent ¤ ¨ ¤§¦ ¤¨ ¤ ¤ ¡ tion into the subsets , , and . Since a bin assignment at depth & . 10,8,2 and 10,7,3 are ¦ ¨ ¨ ! ! ¨ ¢ 5 + 10 20, , and , set dominates two undominated feasible bin assignments, and thus ¡(' ¢+¤¨ , * ¤¨ *) *¦ ¡ ' set . Given all the feasible sets that contain a common ele- and ¡ are two possible assignments ment " , only the undominated sets need to be considered for of the bin (node) at depth 1. assignment to the bin containing " . The reason is that if we Korf [Korf, 2003] proposed the following nogood pruning complete the bin containing " with a dominated set, then we technique. After exhausting the subproblem below the as- ¢£¤¨ ) ¦ ' could swap each subset of items in the dominated set with the signment ¡ , and while exploring the subprob- ¢.¤¨ , corresponding element of the dominating set, and get another lem below the assignment ¡-' , assume we find a ¤) ¦ ¢1¤2 ) *¦ solution without increasing the total number of bins. solution that assigns ¡0/ . We can swap the ¤§, ' ¡ This dominance criterion was proposed by Martello and from ¡3/ with the from , resulting in a solution with ¢5¤¨ *) ¦ ¢6¤2 , ¡4' ¡ Toth [Martello and Toth, 1990], and was used in their branch- and and / . However, we have ¢7¤¨ ) ¦ and-bound algorithm for bin-completion. However, their already exhausted the subtree below ¡%' , and branch-and-bound algorithm was item-oriented, and they therefore, we can prune this branch because it is redundant. only exploit this dominance property in a limited way. In In general, given a node with more than one child, when particular, they take each item # , starting with the largest ele- searching the subtree of any child but the first, we don’t ment, and check if there is a single assignment of one or two need to consider bin assignments that assign to the same bin more elements that dominates all feasible sets containing # . all items used to complete the current bin in a previously- If so, they place # with those elements in the same bin, and explored child node, except for the largest element. More ¤8 *8 9:9;9; 8%<- ' apply the reduction to the remaining subproblem.