The longest-path tag has no wiki summary.
1
vote
2answers
101 views
Longest path on a grid, without revisiting grid cells
I am looking for an algorithm to fidn the longest path between two points on a grid, with the added restriction that you cannot revisit a cell on the grid. (Also, you can only move up, down, left, and ...
0
votes
1answer
72 views
Longest path in a Direct Acyclic Graph
How can I find the longest path in a DAG with no weights?
I know that the longest path from A to B can be found in linear time if the DAG is topologically sorted, but I need to find the longest path ...
-4
votes
2answers
85 views
Finding the longest path in an n-dimensional array [closed]
Overview:
For example there is a 3-dimensional array(program should solve the problem for n-dimension) like the following,
{3 56 67} {34 89 43} {87 54 56}
We are allowed to move from a point to ...
1
vote
1answer
205 views
Find longest path between set of nodes in a tree
Recently came across a programming question.
Given a tree, can be non-binary, can be a single chain (or linear), with N nodes.
Input will be a set of K nodes, denoted a1,a2....ak.
I'd like to find ...
0
votes
1answer
263 views
Longest path for weighted directed acyclic graph
I'm trying to conceptualize this problem and then write Java code for it. I know there's been some discussion here, but I'm not seeing lots of answerers, so I'd like to reiterate the question by ...
1
vote
1answer
172 views
Longest Path Algorithm for Layer Assignment
I'm working on a program to generate an organizational chart of a company. I have been reading about the longest path algorithm to layer the vertices, and one thing has been bugging me. The reading ...
1
vote
1answer
311 views
How to find the longest path in an acyclic directed graph using OGDF library?
I'm new to OGDF library and need to find the longest path in an acyclic directed graph (I want to use OGDF built in functions).
I know, it is possible to find longest path using shortest path ...
0
votes
1answer
92 views
Algorithm for Finding Longest Stretch of a Value at any Angle in a 2D Matrix
I am currently working on a computer-vision program that requires me to determine the "direction" of a color blob in an image. The color blob generally follows an elliptical shape and thus can be used ...
2
votes
4answers
268 views
finding whether a path of a specific length exists in an acyclic graph
In an acyclic graph, I am trying to find out whether or not a path of length L exists between two given nodes. My questions is, what is the best and the simplest Algorithm to use in this case.
Note ...
1
vote
0answers
307 views
How to get the longest path in a DAG starting at a fixed node?
I want to know how to get the longest path in a DAG starting from the node 0(the smallest node)
I searched wiki and got the following algorithm:
algorithm dag-longest-path is
input:
Directed ...
5
votes
4answers
280 views
Longest chain of elements from list in Python
I have a list of nations, and I want to have the longest path of nations where each country chosen must begin with the same letter that ended the previous element
nations = ...
2
votes
1answer
591 views
solving the Longest-Path-Length. Is my solution correct?
This is the question [From CLRS]:
Define the optimization problem LONGEST-PATH-LENGTH as the relation that
associates each instance of an undirected graph and two vertices with the number
of edges in ...
2
votes
2answers
451 views
split tree into equal parts
I am looking for an algorithm to split a tree with N nodes (where the maximum degree of each node is 3) by removing one edge from it, so that the two trees that come as the result have as close as ...
0
votes
4answers
1k views
Longest path in graph
Since last 2 days,i'm trying to find some logic for calculating longest path in graph.I know i can find it easily for DAGs and in general it is polynomial time algorithm.Formally,I want to implement ...
5
votes
3answers
3k views
Dijkstra for longest path in a DAG
I am trying to find out if it is possible to use Dijkstra's algorithm to find the longest path in a directed acyclic path. I know that it is not possible to find the longest path with Dijkstra in a ...
2
votes
5answers
1k views
Dijkstra's algorithm to find most weighted path
I just want to make sure this would work. Could you find the greatest path using Dijkstra's algorithm? Would you have to initialize the distance to something like -1 first and then change the relax ...
2
votes
2answers
824 views
Finding the hamiltonian path in a directed cyclic graph
i want to know if there is an algorithm to find the longest cyclic path in a directed weighted graph (i think this i a problem of finding the largest Hamiltonian sub-graph).
I need to start from one ...
2
votes
2answers
419 views
Is longest possibly non-simple path in NP?
I know that the following problem is in NP-HARD: Given a simple graph G=(V,E), two vertices v, v' in V, an integer B, and a non-negative length function len: E-> Z+, is there a simple path from v to ...
4
votes
1answer
2k views
Computational complexity of a longest path algorithm witn a recursive method
I wrote a code segment to determine the longest path in a graph. Following is the code. But I don't know how to get the computational complexity in it because of the recursive method in the middle. ...
7
votes
1answer
2k views
Optimizations for longest path problem in cyclic graph
What optimizations exist for trying to find the longest path in a cyclic graph?
Longest path in cyclic graphs is known to be NP-complete. What optimizations or heuristics can make finding the longest ...
1
vote
2answers
854 views
How to find the maximum-weight path between two vertices in a DAG?
In a DAG G, with non negative weighted edges, how do you find the maximum-weight path between two vertices in G?
Thank you guys!
6
votes
2answers
767 views
How to find the longest path between two nodes in Lisp?
I need to program a Lisp function that finds the longest path between two nodes, without revisiting any nodes. Though, if the start and end node are the same, this node can be revisited. The function ...
8
votes
1answer
3k views
How do find the longest path in a cyclic Graph between two nodes?
I already solved most the questions posted here, all but the longest path one. I've read the Wikipedia article about longest paths and it seems any easy problem if the graph was acyclic, which mine is ...

