Longest path problem

From HandWiki
Short description: Problem of finding the longest simple path for a given graph

In graph theory and theoretical computer science, the longest path problem is the problem of finding a simple path of maximum length in a given graph. A path is called simple if it does not have any repeated vertices; the length of a path may either be measured by its number of edges, or (in weighted graphs) by the sum of the weights of its edges. In contrast to the shortest path problem, which can be solved in polynomial time in graphs without negative-weight cycles, the longest path problem is NP-hard and the decision version of the problem, which asks whether a path exists of at least some given length, is NP-complete. This means that the decision problem cannot be solved in polynomial time for arbitrary graphs unless P = NP. Stronger hardness results are also known showing that it is difficult to approximate. However, it has a linear time solution for directed acyclic graphs, which has important applications in finding the critical path in scheduling problems.

NP-hardness

The NP-hardness of the unweighted longest path problem can be shown using a reduction from the Hamiltonian path problem: a graph G has a Hamiltonian path if and only if its longest path has length n − 1, where n is the number of vertices in G. Because the Hamiltonian path problem is NP-complete, this reduction shows that the decision version of the longest path problem is also NP-complete. In this decision problem, the input is a graph G and a number k; the desired output is yes if G contains a path of k or more edges, and no otherwise.[1]

If the longest path problem could be solved in polynomial time, it could be used to solve this decision problem, by finding a longest path and then comparing its length to the number k. Therefore, the longest path problem is NP-hard. The question "does there exist a simple path in a given graph with at least k edges" is NP-complete.[2]

In weighted complete graphs with non-negative edge weights, the weighted longest path problem is the same as the Travelling salesman path problem, because the longest path always includes all vertices.[3]

Acyclic graphs

A longest path between two given vertices s and t in a weighted graph G is the same thing as a shortest path in a graph −G derived from G by changing every weight to its negation. Therefore, if shortest paths can be found in −G, then longest paths can also be found in G.[4]

For most graphs, this transformation is not useful because it creates cycles of negative length in −G. But if G is a directed acyclic graph (DAG), then no negative cycles can be created, and a longest path in G can be found in linear time by applying a linear time algorithm for shortest paths in −G, which is also a directed acyclic graph.[4] For a DAG, the longest path from a source vertex to all other vertices can be obtained by running the shortest-path algorithm on −G.

Similarly, for each vertex v in a given DAG, the length of the longest path ending at v may be obtained by the following steps:

  1. Find a topological ordering of the given DAG.
  2. For each vertex v of the DAG, in the topological ordering, compute the length of the longest path ending at v by looking at its incoming neighbors and adding one to the maximum length recorded for those neighbors. If v has no incoming neighbors, set the length of the longest path ending at v to zero. In either case, record this number so that later steps of the algorithm can access it.

Once this has been done, the longest path in the whole DAG may be obtained by starting at the vertex v with the largest recorded value, then repeatedly stepping backwards to its incoming neighbor with the largest recorded value, and reversing the sequence of vertices found in this way.

This is equivalent to running the shortest-path algorithm on −G.

Critical paths

The critical path method for scheduling a set of activities involves the construction of a directed acyclic graph in which the vertices represent project milestones and the edges represent activities that must be performed after one milestone and before another; each edge is weighted by an estimate of the amount of time the corresponding activity will take to complete. In such a graph, the longest path from the first milestone to the last one is the critical path, which describes the total time for completing the project.[4]

Longest paths of directed acyclic graphs may also be applied in layered graph drawing: assigning each vertex v of a directed acyclic graph G to the layer whose number is the length of the longest path ending at v results in a layer assignment for G with the minimum possible number of layers.[5]

Approximation

(Björklund Husfeldt) write that the longest path problem in unweighted undirected graphs "is notorious for the difficulty of understanding its approximation hardness".[6] The best polynomial time approximation algorithm known for this case achieves only a very weak approximation ratio, [math]\displaystyle{ n/\exp(\Omega(\sqrt{\log n})) }[/math].[7] For all [math]\displaystyle{ \epsilon\gt 0 }[/math], it is not possible to approximate the longest path to within a factor of [math]\displaystyle{ 2^{(\log n)^{1-\epsilon}} }[/math] unless NP is contained within quasi-polynomial deterministic time; however, there is a big gap between this inapproximability result and the known approximation algorithms for this problem.[8]

In the case of unweighted but directed graphs, strong inapproximability results are known. For every [math]\displaystyle{ \epsilon\gt 0 }[/math] the problem cannot be approximated to within a factor of [math]\displaystyle{ n^{1-\epsilon} }[/math] unless P = NP, and with stronger complexity-theoretic assumptions it cannot be approximated to within a factor of [math]\displaystyle{ n/\log^{2+\epsilon} n }[/math].[6] The color-coding technique can be used to find paths of logarithmic length, if they exist, but this gives an approximation ratio of only [math]\displaystyle{ O(n/\log n) }[/math].[9]

Parameterized complexity

The longest path problem is fixed-parameter tractable when parameterized by the length of the path. For instance, it can be solved in time linear in the size of the input graph (but exponential in the length of the path), by an algorithm that performs the following steps:

  1. Perform a depth-first search of the graph. Let [math]\displaystyle{ d }[/math] be the depth of the resulting depth-first search tree.
  2. Use the sequence of root-to-leaf paths of the depth-first search tree, in the order in which they were traversed by the search, to construct a path decomposition of the graph, with pathwidth [math]\displaystyle{ d }[/math].
  3. Apply dynamic programming to this path decomposition to find a longest path in time [math]\displaystyle{ O(d!2^dn) }[/math], where [math]\displaystyle{ n }[/math] is the number of vertices in the graph.

Since the output path has length at least as large as [math]\displaystyle{ d }[/math], the running time is also bounded by [math]\displaystyle{ O(\ell!2^\ell n) }[/math], where [math]\displaystyle{ \ell }[/math] is the length of the longest path.[10] Using color-coding, the dependence on path length can be reduced to singly exponential.[9][11][12][13] A similar dynamic programming technique shows that the longest path problem is also fixed-parameter tractable when parameterized by the treewidth of the graph.

For graphs of bounded clique-width, the longest path can also be solved by a polynomial time dynamic programming algorithm. However, the exponent of the polynomial depends on the clique-width of the graph, so this algorithms is not fixed-parameter tractable. The longest path problem, parameterized by clique-width, is hard for the parameterized complexity class [math]\displaystyle{ W[1] }[/math], showing that a fixed-parameter tractable algorithm is unlikely to exist.[14]

Special classes of graphs

A linear-time algorithm for finding a longest path in a tree was proposed by Edsger Dijkstra around 1960, while a formal proof of this algorithm was published in 2002.[15] Furthermore, a longest path can be computed in polynomial time on weighted trees, on block graphs, on cacti,[16] on bipartite permutation graphs,[17] and on Ptolemaic graphs.[18]

For the class of interval graphs, an [math]\displaystyle{ O(n^4) }[/math]-time algorithm is known, which uses a dynamic programming approach.[19] This dynamic programming approach has been exploited to obtain polynomial-time algorithms on the greater classes of circular-arc graphs[20] and of co-comparability graphs (i.e. of the complements of comparability graphs, which also contain permutation graphs),[21] both having the same running time [math]\displaystyle{ O(n^4) }[/math]. The latter algorithm is based on special properties of the lexicographic depth first search (LDFS) vertex ordering[22] of co-comparability graphs. For co-comparability graphs also an alternative polynomial-time algorithm with higher running time [math]\displaystyle{ O(n^7) }[/math] is known, which is based on the Hasse diagram of the partially ordered set defined by the complement of the input co-comparability graph.[23]

Furthermore, the longest path problem is solvable in polynomial time on any class of graphs with bounded treewidth or bounded clique-width, such as the distance-hereditary graphs. Finally, it is clearly NP-hard on all graph classes on which the Hamiltonian path problem is NP-hard, such as on split graphs, circle graphs, and planar graphs.

A simple model of a directed acyclic graph is the Price model, developed by Derek J. de Solla Price to represent citation networks. This is simple enough to allow for analytic results to be found for some properties. For instance, the length of the longest path, from the n-th node added to the network to the first node in the network, scales as[24] [math]\displaystyle{ \ln(n) }[/math].

See also

References

  1. Schrijver, Alexander (2003), Combinatorial Optimization: Polyhedra and Efficiency, Volume 1, Algorithms and Combinatorics, 24, Springer, p. 114, ISBN 9783540443896, https://books.google.com/books?id=mqGeSQ6dJycC&pg=PA114 .
  2. Cormen, Thomas H.; Leiserson, Charles E.; Rivest, Ronald L.; Stein, Clifford (2001), Introduction To Algorithms (2nd ed.), MIT Press, p. 978, ISBN 9780262032933, https://books.google.com/books?id=NLngYyWFl_YC&pg=PA978 .
  3. Lawler, Eugene L. (2001), Combinatorial Optimization: Networks and Matroids, Courier Dover Publications, p. 64, ISBN 9780486414539, https://books.google.com/books?id=m4MvtFenVjEC&pg=PA64 .
  4. 4.0 4.1 4.2 Sedgewick, Robert; Wayne, Kevin Daniel (2011), Algorithms (4th ed.), Addison-Wesley Professional, pp. 661–666, ISBN 9780321573513, https://books.google.com/books?id=idUdqdDXqnAC&pg=PA661 .
  5. Di Battista, Giuseppe (1998), "Layered Drawings of Digraphs", Graph Drawing: Algorithms for the Visualization of Graphs, Prentice Hall, pp. 265–302, ISBN 978-0-13-301615-4 .
  6. 6.0 6.1 Björklund, Andreas; Husfeldt, Thore; Khanna, Sanjeev (2004), "Approximating longest directed paths and cycles", Proc. Int. Coll. Automata, Languages and Programming (ICALP 2004), Lecture Notes in Computer Science, 3142, Berlin: Springer-Verlag, pp. 222–233 .
  7. "Finding long paths, cycles and circuits", International Symposium on Algorithms and Computation, Lecture Notes in Computer Science, 5369, Berlin: Springer, 2008, pp. 752–763, doi:10.1007/978-3-540-92182-0_66, ISBN 978-3-540-92181-3 . For earlier work with even weaker approximation bounds, see "Finding paths and cycles of superpolylogarithmic length", SIAM Journal on Computing 36 (6): 1648–1671, 2007, doi:10.1137/S0097539704445366, http://www.cs.colorado.edu/~hal/u.pdf  and Björklund, Andreas; Husfeldt, Thore (2003), "Finding a path of superlogarithmic length", SIAM Journal on Computing 32 (6): 1395–1402, doi:10.1137/S0097539702416761, http://lup.lub.lu.se/record/526604 .
  8. "On approximating the longest path in a graph", Algorithmica 18 (1): 82–98, 1997, doi:10.1007/BF02523689 .
  9. 9.0 9.1 "Color-coding", Journal of the ACM 42 (4): 844–856, 1995, doi:10.1145/210332.210337 .
  10. "On linear time minor tests with depth-first search", Journal of Algorithms 14 (1): 1–23, 1993, doi:10.1006/jagm.1993.1001 . For an earlier FPT algorithm with slightly better dependence on the path length, but worse dependence on the size of the graph, see Monien, B. (1985), "How to find long paths efficiently", Analysis and design of algorithms for combinatorial problems (Udine, 1982), North-Holland Math. Stud., 109, Amsterdam: North-Holland, pp. 239–254, doi:10.1016/S0304-0208(08)73110-4, ISBN 9780444876997, http://nbn-resolving.de/urn:nbn:de:hbz:466:2-4393 .
  11. Chen, Jianer; Lu, Songjian; Sze, Sing-Hoi; Zhang, Fenghui (2007), "Improved algorithms for path, matching, and packing problems", Proc. 18th ACM-SIAM Symposium on Discrete algorithms (SODA '07), pp. 298–307, http://faculty.cse.tamu.edu/shsze/papers/kpath.pdf .
  12. Koutis, Ioannis (2008), "Faster algebraic algorithms for path and packing problems", International Colloquium on Automata, Languages and Programming, Lecture Notes in Computer Science, 5125, Berlin: Springer, pp. 575–586, doi:10.1007/978-3-540-70575-8_47, ISBN 978-3-540-70574-1, http://ccom.uprrp.edu/~ikoutis/papers/MultilinearDetection.pdf, retrieved 2013-08-09 .
  13. "Finding paths of length k in O*(2k) time", Information Processing Letters 109 (6): 315–318, 2009, doi:10.1016/j.ipl.2008.11.004 .
  14. Fomin, Fedor V.; Golovach, Petr A.; Lokshtanov, Daniel; Saurabh, Saket (2009), "Clique-width: on the price of generality", Proc. 20th ACM-SIAM Symposium on Discrete Algorithms (SODA '09), pp. 825–834, https://www.siam.org/proceedings/soda/2009/SODA09_090_fominf.pdf, retrieved 2012-12-01 .
  15. Bulterman, R.W.; van der Sommen, F.W.; Zwaan, G.; Verhoeff, T.; van Gasteren, A.J.M. (2002), "On computing a longest path in a tree", Information Processing Letters 81 (2): 93–96, doi:10.1016/S0020-0190(01)00198-3 .
  16. Uehara, Ryuhei; Uno, Yushi (2004), "Efficient algorithms for the longest path problem", in Fleischer, Rudolf; Trippen, Gerhard, Algorithms and Computation, 15th International Symposium, ISAAC 2004, Hong Kong, China, December 20-22, 2004, Proceedings, Lecture Notes in Computer Science, 3341, Springer, pp. 871–883, doi:10.1007/978-3-540-30551-4_74, ISBN 978-3-540-24131-7 .
  17. Uehara, Ryuhei; Valiente, Gabriel (2007), "Linear structure of bipartite permutation graphs and the longest path problem", Information Processing Letters 103 (2): 71–77, doi:10.1016/j.ipl.2007.02.010 .
  18. Takahara, Yoshihiro; Teramoto, Sachio; Uehara, Ryuhei (2008), "Longest path problems on Ptolemaic graphs", IEICE Transactions 91-D (2): 170–177, doi:10.1093/ietisy/e91-d.2.170 .
  19. Ioannidou, Kyriaki; Mertzios, George B.; Nikolopoulos, Stavros D. (2011), "The longest path problem has a polynomial solution on interval graphs", Algorithmica 61 (2): 320–341, doi:10.1007/s00453-010-9411-3 .
  20. Mertzios, George B.; Bezakova, Ivona (2014), "Computing and counting longest paths on circular-arc graphs in polynomial time", Discrete Applied Mathematics 164 (2): 383–399, doi:10.1016/j.dam.2012.08.024 .
  21. Mertzios, George B.; Corneil, Derek G. (2012), "A simple polynomial algorithm for the longest path problem on cocomparability graphs", SIAM Journal on Discrete Mathematics 26 (3): 940–963, doi:10.1137/100793529 .
  22. Corneil, Derek G.; Krueger, Richard (2008), "A unified view of graph searching", SIAM Journal on Discrete Mathematics 22 (4): 1259–1276, doi:10.1137/050623498 .
  23. Ioannidou, Kyriaki; Nikolopoulos, Stavros D. (2011), "The longest path problem is polynomial on cocomparability graphs", Algorithmica 65: 177–205, doi:10.1007/s00453-011-9583-5, http://www.cs.uoi.gr/~stavros/J-Papers/J-2012-ALGO.pdf .
  24. Evans, T.S.; Calmon, L.; Vasiliauskaite, V. (2020), "The Longest Path in the Price Model", Scientific Reports 10 (1): 10503, doi:10.1038/s41598-020-67421-8, PMID 32601403, Bibcode2020NatSR..1010503E 

External links