Finding min-sum disjoint shortest paths from a single source to all pairs of destinations

  • Authors:
  • Bing Yang;S. Q. Zheng

  • Affiliations:
  • Cisco Systems, Richardson, TX;Department of Computer Science, University of Texas at Dallas, Richardson, TX

  • Venue:
  • TAMC'06 Proceedings of the Third international conference on Theory and Applications of Models of Computation
  • Year:
  • 2006

Quantified Score

Hi-index 0.00

Visualization

Abstract

Given a graph G = (V, E) with |V| = n, |E| = m, and a source node s, we consider the problem of finding two disjoint paths from s to two destination nodes t1 and t2 with minimum total length, for every pair nodes t1, t2 ∈ V–{s}. One efficient solution is to transform this problem into the problem of finding shortest pairs of disjoint paths, and use the Suurablle-Tarjan algorithm to solve the new problem in O(n2 log n) time and O(n2) space. We present an algorithm that solves this problem in O(n2) time and O(n2) space, with the solution paths are implicitly represented. Given such a representation, the time necessary to explicitly construct all the solution paths is O(1) for each edge on the paths. Based on this algorithm, we present another algorithm that solves this problem in O(mlog1+m/n)n time and O(m) space, with the compromise of longer searching time on solution paths.