中文
相关论文

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

200 篇论文

In the Min $k$-Cut problem, input is an edge weighted graph $G$ and an integer $k$, and the task is to partition the vertex set into $k$ non-empty sets, such that the total weight of the edges with endpoints in different parts is minimized.…

数据结构与算法 · 计算机科学 2020-09-15 Daniel Lokshtanov , Saket Saurabh , Vaishali Surianarayanan

We study parameterized versions of classical algorithms for computing shortest-path trees. This is most easily expressed in terms of tropical geometry. Applications include shortest paths in traffic networks with variable link travel times.

组合数学 · 数学 2022-08-05 Michael Joswig , Benjamin Schröter

We consider the motion-planning problem of planning a collision-free path of a robot in the presence of risk zones. The robot is allowed to travel in these zones but is penalized in a super-linear fashion for consecutive accumulative time…

机器人学 · 计算机科学 2017-03-10 Oren Salzman , Brian Hou , Siddhartha Srinivasa

We study a large family of graph covering problems, whose definitions rely on distances, for graphs of bounded cyclomatic number (that is, the minimum number of edges that need to be removed from the graph to destroy all cycles). These…

离散数学 · 计算机科学 2025-09-03 Dibyayan Chakraborty , Florent Foucaud , Anni Hakanen

We consider a the minimum k-way cut problem for unweighted graphs with a size bound s on the number of cut edges allowed. Thus we seek to remove as few edges as possible so as to split a graph into k components, or report that this requires…

离散数学 · 计算机科学 2011-01-27 Ken-ichi Kawarabayashi , Mikkel Thorup

The approximate single-source shortest-path problem is as follows: given a graph with nonnegative edge weights and a designated source vertex $s$, return estimates of the distances from~$s$ to each other vertex such that the estimate falls…

数据结构与算法 · 计算机科学 2019-12-12 Nairen Cao , Jeremy T. Fineman , Katina Russell

A common way to accelerate shortest path algorithms on graphs is the use of a bidirectional search, which simultaneously explores the graph from the start and the destination. It has been observed recently that this strategy performs…

In the semi-streaming model, an algorithm must process any $n$-vertex graph by making one or few passes over a stream of its edges, use $O(n \cdot \text{polylog }n)$ words of space, and at the end of the last pass, output a solution to the…

数据结构与算法 · 计算机科学 2025-10-23 Sepehr Assadi , Gary Hoppenworth , Janani Sundaresan

We consider the problem of finding a minimum cut of a weighted graph presented as a single-pass stream. While graph sparsification in streams has been intensively studied, the specific application of finding minimum cuts in streams is less…

数据结构与算法 · 计算机科学 2024-12-09 Matthew Ding , Alexandro Garces , Jason Li , Honghao Lin , Jelani Nelson , Vihan Shah , David P. Woodruff

Finding diverse solutions in combinatorial problems recently has received considerable attention (Baste et al. 2020; Fomin et al. 2020; Hanaka et al. 2021). In this paper we study the following type of problems: given an integer $k$, the…

数据结构与算法 · 计算机科学 2021-12-16 Tesshu Hanaka , Yasuaki Kobayashi , Kazuhiro Kurita , See Woo Lee , Yota Otachi

We significantly improve known time bounds for solving the minimum cut problem on undirected graphs. We use a ``semi-duality'' between minimum cuts and maximum spanning tree packings combined with our previously developed random sampling…

数据结构与算法 · 计算机科学 2007-05-23 David R. Karger

We study a constrained shortest path problem in group-labeled graphs with nonnegative edge length, called the shortest non-zero path problem. Depending on the group in question, this problem includes two types of tractable variants in…

数据结构与算法 · 计算机科学 2021-09-10 Yoichi Iwata , Yutaro Yamaguchi

In undirected graphs with real non-negative weights, we give a new randomized algorithm for the single-source shortest path (SSSP) problem with running time $O(m\sqrt{\log n \cdot \log\log n})$ in the comparison-addition model. This is the…

数据结构与算法 · 计算机科学 2023-10-05 Ran Duan , Jiayi Mao , Xinkai Shu , Longhui Yin

In a series of papers, Avraham, Filtser, Kaplan, Katz, and Sharir (SoCG'14), Kaplan, Katz, Saban, and Sharir (ESA'23), and Katz, Saban, and Sharir (ESA'24) studied a class of geometric optimization problems -- including reverse shortest…

数据结构与算法 · 计算机科学 2025-04-10 Timothy M. Chan , Zhengcheng Huang

In the Disjoint Shortest Paths problem one is given a graph $G$ and a set $\mathcal{T}=\{(s_1,t_1),\dots,(s_k,t_k)\}$ of $k$ vertex pairs. The question is whether there exist vertex-disjoint paths $P_1,\dots,P_k$ in $G$ so that each $P_i$…

数据结构与算法 · 计算机科学 2025-05-07 Michał Pilipczuk , Giannos Stamoulis , Michał Włodarczyk

The shortest paths problem is a fundamental challenge in graph theory, with a broad range of potential applications. The algorithms based on matrix multiplication exhibits excellent parallelism and scalability, but is constrained by high…

分布式、并行与集群计算 · 计算机科学 2024-05-14 Yelai Feng , Huaixi Wang , Yining Zhu , Xiandong Liu , Hongyi Lu , Qing Liu

We extend the well known bottleneck paths problem in two directions for directed unweighted (unit edge cost) graphs with positive real edge capacities. Firstly we narrow the problem domain and compute the bottleneck of the entire network in…

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

Shortest path algorithms have played a key role in the past century, paving the way for modern day GPS systems to find optimal routes along static systems in fractions of a second. One application of these algorithms includes optimizing the…

数据结构与算法 · 计算机科学 2021-09-16 Tyler King , Michael Soltys

The sparsest cut problem consists of identifying a small set of edges that breaks the graph into balanced sets of vertices. The normalized cut problem balances the total degree, instead of the size, of the resulting sets. Applications of…

社会与信息网络 · 计算机科学 2017-02-17 Arlei Silva , Ambuj Singh , Ananthram Swami

The Floyd-Warshall algorithm is the most popular algorithm for determining the shortest paths between all pairs in a graph. It is very a simple and an elegant algorithm. However, if the graph does not contain any negative weighted edge,…

数据结构与算法 · 计算机科学 2021-09-07 Ismail H. Toroslu