English

Combining the Shortest Paths and the Bottleneck Paths Problems

Data Structures and Algorithms 2013-11-21 v1

Abstract

We combine the well known Shortest Paths (SP) problem and the Bottleneck Paths (BP) problem to introduce a new problem called the Shortest Paths for All Flows (SP-AF) problem that has relevance in real life applications. We first solve the Single Source Shortest Paths for All Flows (SSSP-AF) problem on directed graphs with unit edge costs in O(mn)O(mn) worst case time bound. We then present two algorithms to solve SSSP-AF on directed graphs with integer edge costs bounded by cc in O(m2+nc)O(m^2 + nc) and O(m2+mnlog(cm))O(m^2 + mn\log{(\frac{c}{m})}) time bounds. Finally we extend our algorithms for the SSSP-AF problem to solve the All Pairs Shortest Paths for All Flows (APSP-AF) problem in O(m2n+nc)O(m^{2}n + nc) and O(m2n+mn2log(cmn))O(m^{2}n + mn^{2}\log{(\frac{c}{mn})}) time bounds. All algorithms presented in this paper are practical for implementation.

Keywords

Cite

@article{arxiv.1311.5081,
  title  = {Combining the Shortest Paths and the Bottleneck Paths Problems},
  author = {Tong-Wook Shinn and Tadao Takaoka},
  journal= {arXiv preprint arXiv:1311.5081},
  year   = {2013}
}

Comments

Will be presented at ACSC 2014

R2 v1 2026-06-22T02:11:17.948Z