VOOZH about

URL: https://www.geeksforgeeks.org/dsa/bin-packing-problem-minimize-number-of-used-bins/

⇱ Bin Packing Problem (Minimize number of used Bins) - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Bin Packing Problem (Minimize number of used Bins)

Last Updated : 2 Dec, 2024

Given n items of different weights and bins each of capacity c, assign each item to a bin such that number of total used bins is minimized. It may be assumed that all items have weights smaller than bin capacity.

Examples:

Input: weight[] = [4, 8, 1, 4, 2, 1], c = 10
Output: 2
Explanation: We need minimum 2 bins to accommodate all items. First bin contains [4, 4, 2] and second bin [8, 1, 1].

Input: weight[] = [9, 8, 2, 2, 5, 4], c = 10
Output: 4
Explanation: We need minimum 4 bins to accommodate all items.

Input: weight[] = [2, 5, 4, 7, 1, 3, 8], c = 10
Output: 3

This problem is a NP-Hard problem and finding an exact minimum number of bins takes exponential time. Following are approximate algorithms for this problem.

Lower Bound 

We can always find a lower bound on minimum number of bins required as: 

Min no. of bins >= Ceil ((Total Weight) / (Bin Capacity))

In the above examples, lower bound for first example is "ceil(4 + 8 + 1 + 4 + 2 + 1)/10" = 2 and lower bound in second example is "ceil(9 + 8 + 2 + 2 + 5 + 4)/10" = 3. 

Online Algorithms

These algorithms are for Bin Packing problems where items arrive one at a time (in unknown order), each must be put in a bin, before considering the next item.

1. Next Fit: When processing next item, check if it fits in the same bin as the last item. Use a new bin only if it does not. 
Below is C++ implementation for this algorithm.  

Output:

Number of bins required in Next Fit : 4

Next Fit is a simple algorithm. It requires only O(n) time and O(1) extra space to process n items. 
Next Fit is 2 approximate, i.e., the number of bins used by this algorithm is bounded by twice of optimal. Consider any two adjacent bins. The sum of items in these two bins must be > c; otherwise, NextFit would have put all the items of second bin into the first. The same holds for all other bins. Thus, at most half the space is wasted, and so Next Fit uses at most 2M bins if M is optimal.

2. First Fit: When processing the next item, scan the previous bins in order and place the item in the first bin that fits. Start a new bin only if it does not fit in any of the existing bins. 

Output: 

Number of bins required in First Fit : 4

The above implementation of First Fit requires O(n2) time, but First Fit can be implemented in O(n Log n) time using Self-Balancing Binary Search Trees.
If M is the optimal number of bins, then First Fit never uses more than 1.7M bins. So First-Fit is better than Next Fit in terms of upper bound on number of bins.

Auxiliary Space: O(n)

3. Best Fit: The idea is to places the next item in the *tightest* spot. That is, put it in the bin so that the smallest empty space is left. 

Output:

Number of bins required in Best Fit : 4

Best Fit can also be implemented in O(n Log n) time using Self-Balancing Binary Search Trees.
If M is the optimal number of bins, then Best Fit never uses more than 1.7M bins. So Best Fit is same as First Fit and better than Next Fit in terms of upper bound on number of bins.

Auxiliary Space: O(n)

4. Worst Fit: The idea is to places the next item in the least tight spot to even out the bins. That is, put it in the bin so that most empty space is left.  

Output:

Number of bins required in Worst Fit : 4

Worst Fit can also be implemented in O(n Log n) time using Self-Balancing Binary Search Trees.
If M is the optimal number of bins, then Best Fit never uses more than 2M-2 bins. So Worst Fit is same as Next Fit in terms of upper bound on number of bins.
Auxiliary Space: O(n)

Offline Algorithms

In the offline version, we have all items upfront. Unfortunately offline version is also NP Complete, but we have a better approximate algorithm for it. First Fit Decreasing uses at most (4M + 1)/3 bins if the optimal is M.

1. First Fit Decreasing:
A trouble with online algorithms is that packing large items is difficult, especially if they occur late in the sequence. We can circumvent this by *sorting* the input sequence, and placing the large items first. With sorting, we get First Fit Decreasing and Best Fit Decreasing, as offline analogues of online First Fit and Best Fit. 

Output:

Number of bins required in First Fit Decreasing : 3

First Fit decreasing produces the best result for the sample input because items are sorted first.
First Fit Decreasing can also be implemented in O(n Log n) time using Self-Balancing Binary Search Trees.

Auxiliary Space: O(1)


Comment
Article Tags:
Article Tags: