Bin packing and Knapsack
Dependencies: None
$\newcommand{\Size}{\operatorname{size}}$ $\newcommand{\opt}{\operatorname{opt}}$ In the bin packing problem (BP), we are given a set $I$ of items and an infinite supply of identical bins. Our task is to pack the items $I$ into the minimum number of bins. Depending on the kind of items and bins, we can get different versions of the problem.
The minimum number of bins needed to pack $I$ is denoted by $\opt(I)$. The number of items in $I$ is denoted by $|I|$.
In the classical bin packing problem (also called the 1-dimensional bin packing problem or 1BP), each item $i$ has a number $\Size(i) \in (0, 1]$ associated with it, and a set of items fits into the bin iff the sum of their sizes is at most 1. For a set $X$ of items, define $\Size(X) = \sum_{i \in X} \Size(i)$.
In the knapsack problem (KS), we are given a set $I$ of items, and each item $i$ has a profit $p(i) \ge 0$ associated with it. Our task is to pack a maximum-profit subset of the items into a single bin. Here the bin is also called knapsack. In the classical knapsack problem (also called 1-dimensional knapsack or 1KS), each item $i$ has a number $\Size(i) \in (0, 1]$ associated with it, and a set of items fits into a bin iff the sum of their sizes is at most 1.
The profit of a maximum-profit packing of a subset of $I$ into a bin is denoted by $\opt(I)$. Usually, it will be clear from context whether $\opt(I)$ refers to bin packing or knapsack, but when disambiguation is necessary, we will use $\opt_{\mathrm{BP}}(I)$ and $\opt_{\mathrm{KS}}(I)$ for bin packing and knapsack, respectively.
Dependency for:
- Bin packing: predecessor of an input instance
- Bin packing: config-enum algorithm
- Bin packing: union of input instances
- Bin packing: removing density restriction from config LP
- BP: α(1+ε)-approx solution to config LP using α-approx algorithm for knapsack
- Bin packing: configuration LP
- Bin packing: density-restricted config LP
- BP: α(1+ε)-approx solution to density-restricted config LP using α-approx algorithm for density-restricted knapsack
- 1BP: size(I) ≤ lin(I)
- Geometric packing problems (BP, KS, SP) and rvol
- 1BP is (1.5-ε)-inapprox
- 1BP: extending by small items
- 1BP: APTAS
- Pseudo-polynomial time algorithm for 1D knapsack
- 1BP: NextFit(S) ≤ ⌈2size(S)⌉
- 1BP: FPTAS for config LP
- 1BP: ⌈size(I)⌉ ≤ opt(I)
- 1BP: harmonic grouping
- FPTAS for 1D knapsack
- 1BP: Karmarkar-Karp algorithm (broken)
- 1BP: NextFit(I) ≤ ⌈size(I)/(1-ε)⌉ for ε-small items
Info:
- Depth: 0
- Number of transitive dependencies: 0