中文
相关论文

相关论文: Ultra-Sparse Near-Additive Emulators

200 篇论文

A $t$-spanner of a graph is a subgraph that $t$-approximates pairwise distances. The greedy algorithm is one of the simplest and most well-studied algorithms for constructing a sparse spanner: it computes a $t$-spanner with $n^{1+O(1/t)}$…

数据结构与算法 · 计算机科学 2023-08-03 Bernhard Haeupler , D Ellis Hershkowitz , Zihan Tan

A $(\beta,\epsilon)$-hopset for a weighted undirected $n$-vertex graph $G=(V,E)$ is a set of edges, whose addition to the graph guarantees that every pair of vertices has a path between them that contains at most $\beta$ edges, whose length…

数据结构与算法 · 计算机科学 2016-05-17 Michael Elkin , Ofer Neiman

Spanners are fundamental graph structures that sparsify graphs at the cost of small stretch. In particular, in recent years, many sequential algorithms constructing additive all-pairs spanners were designed, providing very sparse…

分布式、并行与集群计算 · 计算机科学 2020-06-03 Keren Censor-Hillel , Ami Paz , Noam Ravid

Graph spanners are sparse subgraphs which approximately preserve all pairwise shortest-path distances in an input graph. The notion of approximation can be additive, multiplicative, or both, and many variants of this problem have been…

数据结构与算法 · 计算机科学 2019-11-19 Manuel Fernandez , David P. Woodruff , Taisuke Yasuda

A spanner of a graph is a subgraph that preserves lengths of shortest paths up to a multiplicative distortion. For every $k$, a spanner with size $O(n^{1+1/k})$ and stretch $(2k+1)$ can be constructed by a simple centralized greedy…

数据结构与算法 · 计算机科学 2023-07-10 Rubi Arviv , Lily Chung , Reut Levi , Edward Pyne

An \emph{additive $+\beta$ spanner} of a graph $G$ is a subgraph which preserves distances up to an additive $+\beta$ error. Additive spanners are well-studied in unweighted graphs but have only recently received attention in weighted…

离散数学 · 计算机科学 2021-05-11 Reyan Ahmed , Greg Bodwin , Keaton Hamm , Stephen Kobourov , Richard Spence

This paper presents the first parallel batch-dynamic algorithms for computing spanners and sparsifiers. Our algorithms process any batch of edge insertions and deletions in an $n$-node undirected graph, in $\text{poly}(\log n)$ depth and…

数据结构与算法 · 计算机科学 2025-07-10 Mohsen Ghaffari , Jaehyun Koo

Given an undirected unweighted graph $G = (V, E)$ on $n$ vertices and $m$ edges, a subgraph $H\subseteq G$ is a spanner of $G$ with stretch function $f: \mathbb{R}_+ \rightarrow \mathbb{R}_+$, if for every pair $s, t$ of vertices in $V$,…

数据结构与算法 · 计算机科学 2024-10-18 Zihan Tan , Tianyi Zhang

Given an undirected graph $G=(V,E)$, an {\em $(\alpha,\beta)$-spanner} $H=(V,E')$ is a subgraph that approximately preserves distances; for every $u,v\in V$, $d_H(u,v)\le \alpha\cdot d_G(u,v)+\beta$. An $(\alpha,\beta)$-hopset is a graph…

数据结构与算法 · 计算机科学 2025-01-10 Ofer Neiman , Idan Shabat

We study vertex sparsification for distances, in the setting of planar graphs with distortion: Given a planar graph $G$ (with edge weights) and a subset of $k$ terminal vertices, the goal is to construct an $\varepsilon$-emulator, which is…

数据结构与算法 · 计算机科学 2022-06-23 Hsien-Chih Chang , Robert Krauthgamer , Zihan Tan

A Euclidean noncrossing Steiner $(1+\epsilon)$-spanner for a point set $P\subset\mathbb{R}^2$ is a planar straight-line graph that, for any two points $a, b \in P$, contains a path whose length is at most $1+\epsilon$ times the Euclidean…

Hopsets and spanners are fundamental graph structures, playing a key role in shortest path computation, distributed communication, and more. A (near-exact) hopset for a given graph $G$ is a (small) subset of weighted edges $H$ that when…

数据结构与算法 · 计算机科学 2022-11-15 Shimon Kogan , Merav Parter

This paper presents efficient distributed algorithms for a number of fundamental problems in the area of graph sparsification: We provide the first deterministic distributed algorithm that computes an ultra-sparse spanner in…

数据结构与算法 · 计算机科学 2022-09-26 Marcel Bezdrighin , Michael Elkin , Mohsen Ghaffari , Christoph Grunau , Bernhard Haeupler , Saeed Ilchi , Václav Rozhoň

Let $G = (V,E,w)$ be a weighted undirected graph on $|V| = n$ vertices and $|E| = m$ edges, let $k \ge 1$ be any integer, and let $\epsilon < 1$ be any parameter. We present the following results on fast constructions of spanners with…

数据结构与算法 · 计算机科学 2021-08-03 Hung Le , Shay Solomon

We present a $(1+\varepsilon)$-approximate parallel algorithm for computing shortest paths in undirected graphs, achieving $\mathrm{poly}(\log n)$ depth and $m\mathrm{poly}(\log n)$ work for $n$-nodes $m$-edges graphs. Although sequential…

数据结构与算法 · 计算机科学 2019-11-06 Alexandr Andoni , Clifford Stein , Peilin Zhong

For a positive integer $t$ and a graph $G$, an additive $t$-spanner of $G$ is a spanning subgraph in which the distance between every pair of vertices is at most the original distance plus $t$. Minimum Additive $t$-Spanner Problem is to…

数据结构与算法 · 计算机科学 2019-03-05 Yusuke Kobayashi

We initiate the study on fault-tolerant spanners in hypergraphs and develop fast algorithms for their constructions. A fault-tolerant (FT) spanner preserves approximate distances under network failures, often used in applications like…

数据结构与算法 · 计算机科学 2026-03-10 Jialin He , Nicholas Popescu , Chunjiang Zhu

Spanners have been shown to be a powerful tool in graph algorithms. Many spanner constructions use a certain type of clustering at their core, where each cluster has small diameter and there are relatively few spanner edges between…

数据结构与算法 · 计算机科学 2021-11-18 Sebastian Forster , Martin Grösbacher , Tijn de Vos

This paper studies the complexity of distributed construction of purely additive spanners in the CONGEST model. We describe algorithms for building such spanners in several cases. Because of the need to simultaneously make decisions at far…

数据结构与算法 · 计算机科学 2016-07-20 Keren Censor-Hillel , Telikepalli Kavitha , Ami Paz , Amir Yehudayoff

Consider a graph with n nodes and m edges, independent edge weights and lengths, and arbitrary distance demands for node pairs. The spanner problem asks for a minimum-weight subgraph that satisfies these demands via sufficiently short paths…

数据结构与算法 · 计算机科学 2025-07-02 Fritz Bökler , Markus Chimani , Henning Jasper