中文
相关论文

相关论文: Distances and shortest paths on graphs of bounded …

200 篇论文

In the restricted shortest paths problem, we are given a graph $G$ whose edges are assigned two non-negative weights: lengths and delays, a source $s$, and a delay threshold $D$. The goal is to find, for each target $t$, the length of the…

数据结构与算法 · 计算机科学 2024-10-23 Vikrant Ashvinkumar , Aaron Bernstein , Adam Karczmarz

In this paper we prove that Dijkstra's shortest-path algorithm, if implemented with a sufficiently efficient heap, is universally optimal in its running time, and with suitable small additions is also universally optimal in its number of…

数据结构与算法 · 计算机科学 2025-05-08 Bernhard Haeupler , Richard Hladík , Václav Rozhoň , Robert E. Tarjan , Jakub Tětek

The current paper deals with the subject of shortest path routing in transportation networks (in terms of travelling time), where the speed in several of the network's roads is a function of the time interval. The main contribution of the…

数据结构与算法 · 计算机科学 2016-01-08 Costas K. Constantinou , Georgios Ellinas , Christos Panayiotou , Marios Polycarpou

Given two locations $s$ and $t$ in a road network, a distance query returns the minimum network distance from $s$ to $t$, while a shortest path query computes the actual route that achieves the minimum distance. These two types of queries…

数据结构与算法 · 计算机科学 2013-04-25 Andy Diwen Zhu , Hui Ma , Xiaokui Xiao , Siqiang Luo , Youze Tang , Shuigeng Zhou

It is a critical issue to compute the shortest paths between nodes in networks. Exact algorithms for shortest paths are usually inapplicable for large scale networks due to the high computational complexity. In this paper, we propose a…

社会与信息网络 · 计算机科学 2015-06-29 Shi-nan Gong , Duan-bing Chen , Hui Gao , Guan-nan Wang , Liang-wei Wang

We design fast deterministic algorithms for distance computation in the congested clique model. Our key contributions include: -- A $(2+\epsilon)$-approximation for all-pairs shortest paths in $O(\log^2{n} / \epsilon)$ rounds on unweighted…

分布式、并行与集群计算 · 计算机科学 2019-11-01 Keren Censor-Hillel , Michal Dory , Janne H. Korhonen , Dean Leitersdorf

Given a directed graph of nodes and edges connecting them, a common problem is to find the shortest path between any two nodes. Here we show that the shortest path distances can be found by a simple matrix inversion: If the edges are given…

数据结构与算法 · 计算机科学 2024-07-25 Zeyu Jing , Markus Meister

We present the generic Dijkstra shortest path algorithm: an efficient algorithm for finding a shortest path in an optical network, both in a wavelength-division multiplexed network, and an elastic optical network (EON). The proposed…

网络与互联网体系结构 · 计算机科学 2020-01-08 Ireneusz Szcześniak , Andrzej Jajszczyk , Bożena Woźna-Szcześniak

We consider the problem of computing shortest paths in weighted unit-disk graphs in constant dimension $d$. Although the single-source and all-pairs variants of this problem are well-studied in the plane case, no non-trivial exact distance…

计算几何 · 计算机科学 2021-03-18 Adam Karczmarz , Jakub Pawlewicz , Piotr Sankowski

We study exact, efficient and practical algorithms for route planning in large road networks. Routing applications often require integrating the current traffic situation, planning ahead with traffic predictions for the future, respecting…

数据结构与算法 · 计算机科学 2021-03-29 Ben Strasser , Tim Zeitz

We study the reverse shortest path problem on disk graphs in the plane. In this problem we consider the proximity graph of a set of $n$ disks in the plane of arbitrary radii: In this graph two disks are connected if the distance between…

计算几何 · 计算机科学 2023-07-28 Haim Kaplan , Matthew J. Katz , Rachel Saban , Micha Sharir

Let $V$ be a set of $n$ points in the plane. The unit-disk graph $G = (V, E)$ has vertex set $V$ and an edge $e_{uv} \in E$ between vertices $u, v \in V$ if the Euclidean distance between $u$ and $v$ is at most 1. The weight of each edge…

计算几何 · 计算机科学 2024-07-04 Bruce W. Brewer , Haitao Wang

We present two new and efficient algorithms for computing all-pairs shortest paths. The algorithms operate on directed graphs with real (possibly negative) weights. They make use of directed path consistency along a vertex ordering d. Both…

数据结构与算法 · 计算机科学 2014-01-21 Léon R. Planken , Mathijs M. de Weerdt , Roman P. J. van der Krogt

We are given a directed graph $G = (V,E)$ with $n$ vertices and $m$ edges, with positive weights on the edges, and a parameter $k >0$. We show how to compute, for every vertex $v \in V$, its $k$ nearest-neighbors. The algorithm runs in $O(…

数据结构与算法 · 计算机科学 2016-07-27 Sariel Har-Peled

Given a set of pairwise disjoint polygonal obstacles in the plane, finding an obstacle-avoiding Euclidean shortest path between two points is a classical problem in computational geometry and has been studied extensively. Previously,…

计算几何 · 计算机科学 2021-02-26 Haitao Wang

We study algorithmic and structural aspects of connectivity in hypergraphs. Given a hypergraph $H=(V,E)$ with $n = |V|$, $m = |E|$ and $p = \sum_{e \in E} |e|$ the best known algorithm to compute a global minimum cut in $H$ runs in time…

数据结构与算法 · 计算机科学 2017-05-16 Chandra Chekuri , Chao Xu

We present a new approach called GR (Graph Reduction) algorithm for searching loop-less k-shortest paths (1st to k-th shortest paths) in a graph based on graph reduction. Let a source vertex and a target vertex of k-shortest paths be v_s…

数据结构与算法 · 计算机科学 2019-08-20 Yasuo Yamane , Hironobu Kitajima

We present an optimal and efficient algorithm for finding a shortest path in an elastic optical network. The algorithm is an adaptation of the Dijkstra shortest path algorithm, where we take into account the spectrum continuity and…

网络与互联网体系结构 · 计算机科学 2019-04-16 Ireneusz Szcześniak , Bożena Woźna-Szcześniak

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

Images conveniently capture the result of physical processes, representing rich source of information for data driven medicine, engineering, and science. The modeling of an image as a graph allows the application of graph-based algorithms…

数据结构与算法 · 计算机科学 2022-10-28 Diego Ulisse Pizzagalli , Rolf Krause