Computing Flows in Subquadratic Space

📅 2026-05-10
📈 Citations: 0
Influential: 0
📄 PDF

career value

238K/year
🤖 AI Summary
This work addresses the challenge of solving minimum-cost flow and $st$-maximum flow problems in subquadratic space, which has been hindered by the conventional $\Omega(n^2)$ space requirement for storing edge flows. The paper proposes a multi-pass streaming algorithm that, for directed graphs with integer capacities and costs bounded by $W$, computes an $\varepsilon$-additive approximation to the flow on every edge using $\widetilde{O}(n^{1.5} \log(W/\varepsilon))$ space and $\widetilde{O}(\sqrt{n} \log(W/\varepsilon))$ passes. Notably, the algorithm outputs approximate flow values immediately upon reading each edge. This approach breaks the long-standing $\Omega(n^2)$ space barrier and, in the two-party communication model, achieves a communication complexity of only $\widetilde{O}(n^{1.5} \log^2 W)$ bits, thereby advancing both streaming algorithms and communication complexity theory.
📝 Abstract
Space complexity is a critical factor in various computational models, including streaming, parallel/distributed computing, and communication complexity. We study the space complexity of the minimum-cost flow problem, a generalization of the st-max flow problem, focusing on computing flows in subquadratic space. In the general case with arbitrary capacities, minimum cost and $st$-maximum flows can use up to $Ω(n^2)$ edges, so computing the flow on each edge (rather than just the size/cost) seems impossible in subquadratic space. Indeed, there are lower bounds proving quadratic space is needed to store the flow on every edge, which has been used to prove lower bounds on streaming algorithms. However, we show that these lower bounds can be circumvented, opening up improvements for streaming and communication complexity. For a directed graph with integer capacities and costs bounded by $W$, we provide a $\tilde O(n^{1.5}\log (W/ε))$-space $\tilde O(\sqrt{n} \log(W/ε))$-pass streaming algorithm, which during the last pass returns the flow on each edge up to an additive error of $ε$. Crucially, the algorithm does not return the flow at the end of the last pass but returns the flow on an edge, as the edge is read in the stream. This allows us to circumvent existing $Ω(n^2)$ space lower bounds. In the 2-party communication model, our algorithm implies $\tilde O(n^{1.5}\log^2 W)$ bits of communication.
Problem

Research questions and friction points this paper is trying to address.

minimum-cost flow
space complexity
subquadratic space
streaming algorithm
communication complexity
Innovation

Methods, ideas, or system contributions that make the work stand out.

subquadratic space
minimum-cost flow
streaming algorithm
space complexity
communication complexity
🔎 Similar Papers
No similar papers found.