arXiv ScienceSearch

arXiv · 2507.15658

Asynchronous Collective Tree Exploration: a Distributed Algorithm, and a new Lower Bound

Abstract

We study the problem of collective tree exploration in which a team of $k$ mobile agents must collectively visit all nodes of an unknown tree in as few moves as possible. The agents all start from the root and discover adjacent edges as they progress in the tree. Communication is distributed in the sense that agents share information by reading and writing on whiteboards located at all nodes. Movements are asynchronous, in the sense that the speeds of all agents are controlled by an adversary at all times. All previous competitive guarantees for collective tree exploration are either distributed but synchronous, or asynchronous but centralized. In contrast, we present a distributed asynchronous algorithm that explores any tree of $n$ nodes and depth $D$ in at most $2n+O(k^2 2^kD)$ moves, i.e., with a regret that is linear in $D$, and a variant algorithm with a guarantee in $O(k/\log k)(n+kD)$, i.e., with a competitive ratio in $O(k/\log k)$. We note that our regret guarantee is asymptotically optimal (i.e., $1$-competitive) from the perspective of average-case complexity. We then present a new general lower bound on the competitive ratio of asynchronous collective tree exploration, in $Ω(\log^2 k)$. This lower bound applies to both the distributed and centralized settings, and improves upon the previous lower bound in $Ω(\log k)$.

Explore related subjects

Keep this discovery

Explore connections, maps & timelines

BibTeXRIS

Romain Cosson, Laurent Massoulié. 2025-07-21. Asynchronous Collective Tree Exploration: a Distributed Algorithm, and a new Lower Bound. https://arxiv.org/abs/2507.15658

Cite the original work for its findings. Save a collection to share your selection of sources.

KEEP EXPLORING

Related papers

Cluster deletion in cographs, permutation graphs, and graphs with bounded clique number

The Cluster Deletion problem asks for a minimum-size edge set whose deletion turns a graph into a disjoint union of complete graphs. Equivalently, the Clique Partition problem asks for a partition of the vertex set into cliques that maximizes the number of edges within the parts. We give a simpler proof of a result of Gao, Hare, and Nastos (Discete Mathematics, 2013), that Cluster Deletion is polynomial-time solvable on cographs. In addition, we show that the natural linear programming formulation of Clique Partition is exact on cographs. We then show that Cluster Deletion is NP-complete on permutation graphs, which are a superclass of cographs. This answers an open question of Konstantinidis and Papadopoulos (Algorithmica, 2021). We also exhibit a permutation graph on nine vertices for which the linear programming formulation is not exact. Finally, for graphs with clique number at most $c$, we give a polynomial-time $2\binom{c}{2}/(\binom{c}{2}+1)$-approximation algorithm for Clique Partition. More generally, the algorithm runs in polynomial time on every graph class for which a maximum clique can be found in polynomial time. For each fixed $c\geq 3$, we also construct infinitely many examples attaining the stated approximation ratio. The same examples show that, for Cluster Deletion , the algorithm is a $2$-approximation and no better, for every fixed $c \geq 3$.

cs.DS

Improved Approximation Algorithms for the Multiple-Depot Split Delivery Vehicle Routing Problem

The multiple-depot split delivery vehicle routing problem is a challenging optimization problem with broad applications in logistics and transportation. The goal is to serve customers' demand using a limited fleet of capacitated vehicles stationed at multiple depots, allowing each customer's demand to be split and served by multiple vehicles, while minimizing the total travel cost. Parameterized by the number of depots, the previous best-known result was a slice-wise polynomial-time $6$-approximation algorithm (INFORMS J. Comput. 2023), and whether this ratio could be improved remained an open question. We resolve this question by proposing a fixed-parameter tractable (FPT) $(2α+1+\varepsilon)$-approximation algorithm for any constant $\varepsilon>0$, where $α<3/2$ denotes the best-known ratio for the traveling salesman problem (TSP). Our algorithm enumerates partitions of connected components formed by low-cost edges to construct a low-cost cycle cover, then extracts paths, and assigns them to vehicles through a minimum-cost flow method. The cycle-cover technique also yields an FPT $(α+\varepsilon)$-approximation for the multiple-depot TSP. We further propose a simple parameterized $5$-approximation algorithm based on the structural properties of vehicle capacities, which achieves polynomial running time for a specific setting that appears in existing benchmark instances. In addition, we develop a bi-factor approximation algorithm that balances minor vehicle capacity violations against reductions in travel cost or gains in computational efficiency. Finally, our computational experiments demonstrate that the proposed methods exhibit complementary strengths across various instance types and achieve competitive solution quality.

cs.DS

Scalable Algorithms for Approximate DNF Model Counting

Model counting of Disjunctive Normal Form (DNF) formulas is a critical problem in applications such as probabilistic inference and network reliability. For example, it is often used for query evaluation in probabilistic databases. Due to the computational intractability of exact DNF counting, there has been a line of research into a variety of approximation algorithms. These include Monte Carlo approaches such as the classical algorithms of Karp, Luby, and Madras (1989), as well as methods based on hashing (Soos et al. 2023), and heuristic approximations based on Neural Nets (Abboud, Ceylan, and Lukasiewicz 2020). We develop a new Monte Carlo approach with an adaptive stopping rule and short-circuit formula evaluation. We prove it achieves Probably Approximately Correct (PAC) learning bounds and is asymptotically more efficient than the previous methods. We also show experimentally that it out-performs prior algorithms by orders of magnitude, and can scale to much larger problems with millions of variables.

cs.DS