1BP: harmonic grouping

Dependencies:

  1. Bin packing and Knapsack
  2. Bin packing: predecessor of an input instance
  3. Bin packing: union of input instances
  4. Harmonic bound for fraction
  5. Simple bound on harmonic sum
  6. Bound on k extreme values

Let I be an input instance for 1D bin packing such that size(I)−min(I)≄2.

The harmonic grouping scheme is an algorithm that first splits I into disjoint instances Iâ€Č and I2 such that size(I2)≀3ln⁥(3min(I))+92. It then increases the item sizes in Iâ€Č to get I1 such that I1 has at most size(I)/2−1 distinct item-sizes. The algorithm outputs (I1,I2).

It can be proven that I1âȘŻIâȘŻI1+I2.

This algorithm runs in O(nlg⁥n) time.

Algorithm and proof of correctness

The harmonic grouping scheme first orders the items in non-increasing order of size. It iteratively puts items into a group till the size of the group exceeds 2. Then it closes that group and opens a new group for the next pieces. Suppose t such groups are created. Let Gi be the ith group. Let ni be the number of items in Gi.

Let H1=G1 and Ht=Gt. For i∈{2,3,
,t−1}, let Hi be the last ni−ni−1 items in Gi and let Giâ€Č be the first ni−1 items from Gi with sizes raised to max(Gi). Then Gi+1â€ČâȘŻGiâȘŻGiâ€Č+Hi.

Let I2=∑i=1tHi and I1=∑i=2t−1Giâ€Č. I1=∑i=2t−1Giâ€ČâȘŻâˆ‘i=1t−2GiâȘŻI I1+I2=G1+∑i=2t−1(Giâ€Č+Hi)+GtâȘ°I Therefore, I1âȘŻIâȘŻI1+I2.

All items in Giâ€Č have the same size so I1 has t−2 distinct items. size(I)=∑i=1tsize(Gi)≄2(t−1)âŸčt−2≀size(I)/2−1

nt−1≀size(Gt−1)min(Gt−1)≀3min(I) For 2≀i≀t−1, (Hi has ni−ni−1 smallest items)size(Hi)≀3ni−ni−1ni size(I2)=∑i=1tsize(Hi)≀6+3∑i=2t−2ni−ni−1ni(harmonic bound on fraction)≀6+3∑i=2t−2(H(ni)−H(ni−1))=6+3(H(nt−1)−H(n1))(n1≄2)≀3H(nt−1)+32(H(n)≀ln⁥(n)+1)≀3ln⁥(nt−1)+92≀3ln⁥(3min(I))+92

Dependency for:

  1. 1BP: Karmarkar-Karp algorithm (broken)

Info:

Transitive dependencies:

  1. Bin packing and Knapsack
  2. Bin packing: union of input instances
  3. Bin packing: predecessor of an input instance
  4. Integration bound
  5. Simple bound on harmonic sum
  6. Harmonic bound for fraction
  7. Bound on k extreme values