Longest Path on Interval Graphs: Difference between revisions

From Algorithm Wiki
Jump to navigation Jump to search
(Created page with "{{DISPLAYTITLE:Longest Path on Interval Graphs (Longest Path Problem)}} == Description == The longest path problem is the problem of finding a path of maximum length in a graph. A graph $G$ is called interval graph if its vertices can be put in a one-to-one correspondence with a family $F$ of intervals on the real line such that two vertices are adjacent in $G$ if and only if the corresponding intervals intersect; $F$ is called an intersection model for $G$. == Param...")
 
No edit summary
Line 22: Line 22:
|}
|}


== Time Complexity graph ==  
== Time Complexity Graph ==  


[[File:Longest Path Problem - Longest Path on Interval Graphs - Time.png|1000px]]
[[File:Longest Path Problem - Longest Path on Interval Graphs - Time.png|1000px]]


== Space Complexity graph ==  
== Space Complexity Graph ==  


[[File:Longest Path Problem - Longest Path on Interval Graphs - Space.png|1000px]]
[[File:Longest Path Problem - Longest Path on Interval Graphs - Space.png|1000px]]


== Pareto Decades graph ==  
== Pareto Frontier Improvements Graph ==  


[[File:Longest Path Problem - Longest Path on Interval Graphs - Pareto Frontier.png|1000px]]
[[File:Longest Path Problem - Longest Path on Interval Graphs - Pareto Frontier.png|1000px]]

Revision as of 14:04, 15 February 2023

Description

The longest path problem is the problem of finding a path of maximum length in a graph.

A graph $G$ is called interval graph if its vertices can be put in a one-to-one correspondence with a family $F$ of intervals on the real line such that two vertices are adjacent in $G$ if and only if the corresponding intervals intersect; $F$ is called an intersection model for $G$.

Parameters

No parameters found.

Table of Algorithms

Name Year Time Space Approximation Factor Model Reference
Ioannidou; Kyriaki; Mertzios; George B.; Nikolopoulos; Stavros D. 2011 $O(n^{4})$ $O(n^{3})$ Exact Deterministic Time & Space

Time Complexity Graph

Longest Path Problem - Longest Path on Interval Graphs - Time.png

Space Complexity Graph

Longest Path Problem - Longest Path on Interval Graphs - Space.png

Pareto Frontier Improvements Graph

Longest Path Problem - Longest Path on Interval Graphs - Pareto Frontier.png