Deterministic Distributed DFS via Cycle Separators in Planar Graphs
Benjamin Jauregui, Pedro Montealegre, Ivan Rapaport
TL;DR
This work achieves a deterministic CONGEST model algorithm for cycle separators in planar graphs, running in tilde-O(D) rounds and enabling parallel computation across components. By introducing deterministic face weights and augmentations, the authors avoid randomized geometric simulations and triangulations, yet still locate good separator edges. They then leverage these cycle separators in a recursive framework to construct a DFS tree in tilde-O(D) rounds, matching the best-known randomized results up to polylog factors and approaching fundamental lower bounds. The approach rests on deterministic subroutines for DFS orders, LCA, path marking, and face-aware augmentations, supported by low-congestion shortcuts in planar graphs. The results have practical impact for distributed planar algorithms, offering near-optimal deterministic performance for DFS and related separator-based procedures, and open avenues for further deterministic separator methods in broader graph classes.
Abstract
One of the most basic techniques in algorithm design consists of breaking a problem into subproblems and then proceeding recursively. In the case of graph algorithms, one way to implement this approach is through separator sets. Given a graph $G=(V,E)$, a subset of nodes $S \subseteq V$ is called a separator set of $G$ if the size of each connected component of $G-S$ is at most $2/3 \cdot |V|$. The most useful separator sets are those that satisfy certain restrictions of cardinality or structure. For over 40 years, various efficient algorithms have been developed for computing separators of different kinds, particularly in planar graphs. Separator sets, combined with a divide and conquer approach, have been fundamental in the design of efficient algorithms in various settings. In this work, we present the first deterministic algorithm in the distributed CONGEST model that recursively computes a cycle separator over planar graphs in $\tilde{O}(D)$ rounds. This result, as in the centralized setting, has significant implications in the area of distributed planar algorithms. In fact, from this result, we can construct a deterministic algorithm that computes a DFS tree in ${\tilde{O}}(D)$ rounds. This matches both the best-known randomized algorithm of Ghaffari and Parter (DISC, 2017) and, up to polylogarithmic factors, the trivial lower bound of $Ω(D)$ rounds.
