Tight Lower Bounds for Directed Cut Sparsification and Distributed Min-Cut

Yu Cheng,Max Li,Honghao Lin,Zi-Yi Tai,David P.Woodruff,Jason Zhang
2024-06-19
Abstract:In this paper, we consider two fundamental cut approximation problems on large graphs. We prove new lower bounds for both problems that are optimal up to logarithmic factors. The first problem is to approximate cuts in balanced directed graphs. In this problem, the goal is to build a data structure that $(1 \pm \epsilon)$-approximates cut values in graphs with $n$ vertices. For arbitrary directed graphs, such a data structure requires $\Omega(n^2)$ bits even for constant $\epsilon$. To circumvent this, recent works study $\beta$-balanced graphs, meaning that for every directed cut, the total weight of edges in one direction is at most $\beta$ times that in the other direction. We consider two models: the {\em for-each} model, where the goal is to approximate each cut with constant probability, and the {\em for-all} model, where all cuts must be preserved simultaneously. We improve the previous $\Omega(n \sqrt{\beta/\epsilon})$ lower bound to $\tilde{\Omega}(n \sqrt{\beta}/\epsilon)$ in the for-each model, and we improve the previous $\Omega(n \beta/\epsilon)$ lower bound to $\Omega(n \beta/\epsilon^2)$ in the for-all model. This resolves the main open questions of (Cen et al., ICALP, 2021). The second problem is to approximate the global minimum cut in a local query model, where we can only access the graph via degree, edge, and adjacency queries. We improve the previous $\Omega\bigl(\frac{m}{k}\bigr)$ query complexity lower bound to $\Omega\bigl(\min\{m, \frac{m}{\epsilon^2 k}\}\bigr)$ for this problem, where $m$ is the number of edges, $k$ is the size of the minimum cut, and we seek a $(1+\epsilon)$-approximation. In addition, we show that existing upper bounds with slight modifications match our lower bound up to logarithmic factors.
Data Structures and Algorithms
What problem does this paper attempt to address?
This paper attempts to solve two basic graph - cutting approximation problems: 1. **Cut approximation in balanced directed graphs**: - Problem background: In a directed graph, the goal is to construct a data structure that can approximate the cut value in the graph with an accuracy of (1 ± ε). For any directed graph, even if ε is a constant, such a data structure requires Ω(n^2) bits. - Research object: Researchers introduced the concept of β - balanced graphs, that is, for each directed cut, the total weight of the edges in one direction is no more than β times that in the other direction. - Model: The paper considered two models: - **For - each model**: The goal is to approximate each cut with a constant probability. - **For - all model**: The goal is to preserve all cuts simultaneously. - Main contributions: The paper improved the previous Ω(n \sqrt{β/ε}) lower bound in the for - each model to eΩ(n \sqrt{β/ε}), and the previous Ω(n β/ε) lower bound in the for - all model to Ω(n β/ε^2). These results solved the main open problems in [Cen et al., ICALP, 2021]. 2. **Global minimum cut approximation in the local query model**: - Problem background: In the local query model, the graph can only be accessed through degree queries, edge queries, and adjacency queries. The goal is to approximate the global minimum cut with an accuracy of (1 + ε). - Main contributions: The paper improved the previous Ω(m/k) query complexity lower bound to Ω(min{m, m/(ε^2 k)}), where m is the number of edges and k is the size of the minimum cut. In addition, the paper also proved that the existing upper bounds can match this lower bound (up to a logarithmic factor) after slight modification. ### Formula summary - **Lower bound for the for - each model**: \[ \text{Lower bound} = e\Omega\left(\frac{n \sqrt{\beta}}{\epsilon}\right) \] - **Lower bound for the for - all model**: \[ \text{Lower bound} = \Omega\left(\frac{n \beta}{\epsilon^2}\right) \] - **Query complexity lower bound in the local query model**: \[ \text{Lower bound} = \Omega\left(\min\left\{m, \frac{m}{\epsilon^2 k}\right\}\right) \] ### Conclusion Through strict theoretical analysis and communication complexity games, the paper provides the optimal lower bounds for these two problems, thus filling the gaps in existing research and providing a solid foundation for future research.