I need to find the longest cycle in a directed graph using DFS.

I once saw this Wikipedia article describing the way of doing this, and I think it approached the problem something like marking the node with one of three states: Node not yet visited, Finished searching the node, and Node visited, but not yet finished visiting.

I would be grateful if anyone could share the link with me. By the way, it isn't Tarjan's Algorithm.

The problem below is what I'm trying to solve, in case you'd like to know.

The two digits given in the first line is N and M, each representing the number of nodes and the number of directed edges.

From the second line is given M sets of two digits A and B, which means that node A and B are connected but you can only traverse the node from A to B.

input.txt:

7 9  
1 2  
2 3  
3 1  
3 4  
4 5  
5 1  
5 6  
6 7  
7 2  

The answer in this case is 6, since 2>3>4>5>6>7>2.

link|improve this question
2  
homework? 15chars – st0le Dec 25 '10 at 11:33
4  
Isn't this NP-complete? If you can find the longest cycle, in polynomial time, you also find out if the graph contains a hamiltonian cycle. – dark_charlie Dec 25 '10 at 11:41
1  
This is NPC problem but if you want a longest path in DAG it's p, in all you should say what you do, to people help you. – Saeed Amiri Dec 25 '10 at 12:33
You might be thinking of a the wikipedia article on topological sorts. Although, that is a different problems... – gte525u Jan 7 '11 at 2:56
feedback

3 Answers

I think that longest elementary cycle (or circuit) is better terminology than longest cycle.

Anyway, this pdf may be helpful: http://dutta.csc.ncsu.edu/csc791_spring07/wrap/circuits_johnson.pdf

This one year old stackoverflow question has also many links to related problems and algorithms: : Finding all cycles in graph

link|improve this answer
feedback

This problem is NP-Complete and there haven't been a polynomial time algorithm for it. What is the size of your problem? I mean how many nodes will be in the input graph?

longest cycle problem reduces to Hamiltonian cycle problem: http://mathworld.wolfram.com/HamiltonianCycle.html

link|improve this answer
feedback

It can indeed be shown that you can reduce Hamiltonian cycle into this problem in polynomial time, so it ends up NP-complete. Regardless whether the graph is directed or undirected.

As far as the algorithm, the easy way to solve the problem is to backtrack---start in nodes i=1 to n, and always explore all cycles starting in the particular node i. Once this is done, you eliminate the node i and continue for the rest of the graph, starting in node i+1. You may want to do something like node-coloring in DFS, to distinguish nodes that you never want to visit again and those that you visited along the path in this particular pass. You may also want to put something like a time-stamp on the nodes, similar to discovery times, but in this case you need to write these times everytime you discover a node, as most nodes will be discovered many times. The papers listed above could be helpful, and there are more ways to do this for sure.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.