中文
相关论文

相关论文: Faster Parametric Shortest Path and Minimum Balanc…

200 篇论文

A stable or locally-optimal cut of a graph is a cut whose weight cannot be increased by changing the side of a single vertex. In this paper we study Minimum Stable Cut, the problem of finding a stable cut of minimum weight. Since this…

计算复杂性 · 计算机科学 2026-04-08 Michael Lampis

Given an $n$-vertex $m$-edge graph $G$ with non negative edge-weights, the girth of $G$ is the weight of a shortest cycle in $G$. For any graph $G$ with polynomially bounded integer weights, we present a deterministic algorithm that…

数据结构与算法 · 计算机科学 2018-10-25 Guillaume Ducoffe

For two vertices $s$ and $t$ in a graph $G=(V,E)$, the next-to-shortest path is an $st$-path which length is minimum amongst all $st$-paths strictly longer than the shortest path length. In this paper we show that, when the graph is…

数据结构与算法 · 计算机科学 2012-03-26 Bang Ye Wu , Jun-Lin Guo , Yue-Li Wang

We develop new $(1+\epsilon)$-approximation algorithms for finding the global minimum edge-cut in a directed edge-weighted graph, and for finding the global minimum vertex-cut in a directed vertex-weighted graph. Our algorithms are…

数据结构与算法 · 计算机科学 2025-12-17 Ron Mosenzon

We present an all-pairs shortest path algorithm whose running time on a complete directed graph on $n$ vertices whose edge weights are chosen independently and uniformly at random from $[0,1]$ is $O(n^2)$, in expectation and with high…

组合数学 · 数学 2011-05-20 Yuval Peres , Dimitry Sotnikov , Benny Sudakov , Uri Zwick

An algorithm observes the trajectories of random walks over an unknown graph $G$, starting from the same vertex $x$, as well as the degrees along the trajectories. For all finite connected graphs, one can estimate the number of edges $m$ up…

统计理论 · 数学 2018-08-20 Anna Ben-Hamou , Roberto I. Oliveira , Yuval Peres

Here the All-pairs shortest path problem on weighted undirected sparse graphs is being considered. For the problem considered, we propose ``disassembly and assembly of a graph'' algorithm which uses a solution of the problem on a…

数据结构与算法 · 计算机科学 2013-08-08 Urakov , Timeryaev

Given an arbitrary, non-negatively weighted, directed graph $G=(V,E)$ we present an algorithm that computes all pairs shortest paths in time $\mathcal{O}(m^* n + m \lg n + nT_\psi(m^*, n))$, where $m^*$ is the number of different edges…

数据结构与算法 · 计算机科学 2013-01-01 Andrej Brodnik , Marko Grgurovič

We present a message-passing algorithm to solve the edge disjoint path problem (EDP) on graphs incorporating under a unique framework both traffic optimization and path length minimization. The min-sum equations for this problem present an…

无序系统与神经网络 · 物理学 2016-01-21 Fabrizio Altarelli , Alfredo Braunstein , Luca Dall'Asta , Caterina De Bacco , Silvio Franz

We present a general technique, based on parametric search with some twist, for solving a variety of optimization problems on a set of semi-algebraic geometric objects of constant complexity. The common feature of these problems is that…

计算几何 · 计算机科学 2022-07-15 Matthew J. Katz , Micha Sharir

We present a family of fast pseudo-approximation algorithms for the minimum balanced vertex separator problem in a graph. Given a graph $G=(V,E)$ with $n$ vertices and $m$ edges, and a (constant) balance parameter $c\in(0,1/2)$, where $G$…

数据结构与算法 · 计算机科学 2026-03-18 Vladimir Kolmogorov , Jack Spalding-Jamieson

Computing shortest paths is one of the most fundamental algorithmic graph problems. It is known since decades that this problem can be solved in near-linear time if all weights are nonnegative. A recent break-through by [Bernstein,…

数据结构与算法 · 计算机科学 2025-02-18 Alejandro Cassis , Andreas Karrenbauer , André Nusser , Paolo Luigi Rinaldi

We study dynamic $(1+\epsilon)$-approximation algorithms for the all-pairs shortest paths problem in unweighted undirected $n$-node $m$-edge graphs under edge deletions. The fastest algorithm for this problem is a randomized algorithm with…

数据结构与算法 · 计算机科学 2018-03-02 Monika Henzinger , Sebastian Krinninger , Danupon Nanongkai

We present the first $m\,\text{polylog}(n)$ work, $\text{polylog}(n)$ time algorithm in the PRAM model that computes $(1+\epsilon)$-approximate single-source shortest paths on weighted, undirected graphs. This improves upon the breakthrough…

数据结构与算法 · 计算机科学 2022-06-02 Jason Li

In this work we revisit the fundamental Single-Source Shortest Paths (SSSP) problem with possibly negative edge weights. A recent breakthrough result by Bernstein, Nanongkai and Wulff-Nilsen established a near-linear $O(m \log^8(n)…

数据结构与算法 · 计算机科学 2023-04-12 Karl Bringmann , Alejandro Cassis , Nick Fischer

We revisit the issue of low-distortion embedding of metric spaces into the line, and more generally, into the shortest path metric of trees, from the parameterized complexity perspective.Let $M=M(G)$ be the shortest path metric of an edge…

数据结构与算法 · 计算机科学 2008-04-21 Michael Fellows , Fedor Fomin , Daniel Lokshtanov , Elena Losievskaja , Frances A. Rosamond , Saket Saurabh

We present the first near-linear work and poly-logarithmic depth algorithm for computing a minimum cut in a graph, while previous parallel algorithms with poly-logarithmic depth required at least quadratic work in the number of vertices. In…

分布式、并行与集群计算 · 计算机科学 2020-07-03 Barbara Geissmann , Lukas Gianinazzi

Consider the single-source shortest paths problem on a directed graph with real-valued edge weights. We solve this problem in $O(n^{2.5}\log^{4.5}n)$ time, improving on prior work of Fineman (STOC 2024) and Huang-Jin-Quanrud (SODA 2025,…

数据结构与算法 · 计算机科学 2025-11-18 George Z. Li , Jason Li , Satish Rao , Junkai Zhang

Given a directed graph $G$ with arbitrary real-valued weights, the single source shortest-path problem (SSSP) asks for, given a source $s$ in $G$, finding a shortest path from $s$ to each vertex $v$ in $G$. A classical SSSP algorithm…

数据结构与算法 · 计算机科学 2019-03-06 Sanjiang Li , Yongming Li

We introduce a new problem that combines the well known All Pairs Shortest Paths (APSP) problem and the All Pairs Bottleneck Paths (APBP) problem to compute the shortest paths for all pairs of vertices for all possible flow amounts. We call…

数据结构与算法 · 计算机科学 2013-09-24 Tong-Wook Shinn , Tadao Takaoka