# Streaming Algorithms for Bin Packing and Vector Scheduling

**Authors:** Graham Cormode, Pavel Vesel\'y

arXiv: 1905.04897 · 2026-01-27

## TL;DR

This paper introduces the first efficient streaming algorithms for bin packing and vector scheduling, achieving near-optimal approximation ratios with small memory, suitable for massive data that cannot fit into memory.

## Contribution

It presents novel streaming algorithms for fundamental combinatorial optimization problems with provably optimal or near-optimal space complexity and approximation guarantees.

## Key findings

- Achieves a $(1+	ext{}\varepsilon)$-approximation for bin packing with $	ilde{O}(1/	ext{	ext}varepsilon)$ space.
- Provides a $d+	ext{	ext}varepsilon$-approximation for vector bin packing in $d$ dimensions.
- Constructs input summaries for vector scheduling with space $	ilde{O}(d^2 m / 	ext{	ext}varepsilon^2)$, preserving the optimum within a factor of $2 - 1/m + 	ext{	ext}varepsilon$.

## Abstract

Problems involving the efficient arrangement of simple objects, as captured by bin packing and makespan scheduling, are fundamental tasks in combinatorial optimization. These are well understood in the traditional online and offline cases, but have been less well-studied when the volume of the input is truly massive, and cannot even be read into memory. This is captured by the streaming model of computation, where the aim is to approximate the cost of the solution in one pass over the data, using small space. As a result, streaming algorithms produce concise input summaries that approximately preserve the optimum value.   We design the first efficient streaming algorithms for these fundamental problems in combinatorial optimization. For Bin Packing, we provide a streaming asymptotic $1+\varepsilon$-approximation with $\widetilde{O}\left(\frac{1}{\varepsilon}\right)$ memory, where $\widetilde{O}$ hides logarithmic factors. Moreover, such a space bound is essentially optimal. Our algorithm implies a streaming $d+\varepsilon$-approximation for Vector Bin Packing in $d$ dimensions, running in space $\widetilde{O}\left(\frac{d}{\varepsilon}\right)$. For the related Vector Scheduling problem, we show how to construct an input summary in space $\widetilde{O}(d^2\cdot m / \varepsilon^2)$ that preserves the optimum value up to a factor of $2 - \frac{1}{m} +\varepsilon$, where $m$ is the number of identical machines.

## Full text

_Full body text omitted from this summary view._ Fetch the complete paper as Markdown: https://tomesphere.com/paper/1905.04897/full.md

## Figures

1 figure with captions in the complete paper: https://tomesphere.com/paper/1905.04897/full.md

## References

40 references — full list in the complete paper: https://tomesphere.com/paper/1905.04897/full.md

---
Source: https://tomesphere.com/paper/1905.04897