Tagged Questions
The shortest-path tag has no wiki summary.
15
votes
5answers
2k views
Knight's Shortest Path Chess Question
I've been practicing for an upcoming programming competition and I have stumbled across a question that I am just completely bewildered at. However, I feel as though it's a concept I should learn now ...
13
votes
5answers
637 views
find a cost optimized path through a grid/matrix in c++
I am stuck with a problem and could not find much help online. I need to find the minimum cost combination of numbers from multiple vectors of numbers. The vector size is same for all vectors.
For ...
12
votes
3answers
264 views
Finding a shortest path that passes through some arbitrary sequence of nodes?
In this earlier question the OP asked how to find a shortest path in a graph that goes from u to v and also passes through some node w. The accepted answer, which is quite good, was to run Dijkstra's ...
11
votes
10answers
754 views
best algorithm for finding distance for all pairs where edges' weight is 1
As the title said, I'm trying to implement an algorithm that finds out the distances between all pairs of nodes in given graph. But there is more: (Things that might help you)
The graph is ...
9
votes
4answers
164 views
What's the simplest algorithm/solution for a single pair shortest path through a real-weighted undirected graph?
I need to find a shortest path through an undirected graph whose nodes are real (positive and negative) weighted. These weights are like resources which you can gain or loose by entering the node.
...
9
votes
4answers
2k views
the best shortest path algorithm
what is the difference between the "Floyd-Warshall algorithm" and "Dijkstra's Algorithm", and which is the best for finding the shortest path in a graph?
I need to calculate the shortest path between ...
8
votes
3answers
199 views
Route problem in a graph: minimize average edge cost instead of total cost
I have a weighted graph, no negative weights, and I would like to find the path from one node to another, trying to minimize the cost for the single step. I don't need to minimize the total cost of ...
8
votes
2answers
167 views
Javascript library for graphs (in the mathematical sense)
Are there any significant Javascript libraries for graph and network representation, with common algorithms, optimization, etc.? I'm imagining something like the C++ lemon library, with graph search, ...
8
votes
7answers
2k views
Efficiently finding the shortest path in large graphs
I'm looking to find a way to in real-time find the shortest path between nodes in a huge graph. It has hundreds of thousands of vertices and millions of edges. I know this question has been asked ...
7
votes
1answer
495 views
Bidirectional A* (A-star) Search
I'm implementing a bidirectional A* search (bidirectional as in the search is performed from both the origin and destination simultaneously, and when these two searches meet, I'll have my shortest ...
7
votes
2answers
831 views
Dijkstra shortest path algorithm with edge cost
I have a directed, positive weighted graph. Each edge have a cost of use.
I have only A money, i want to calculate shortest paths with dijkstra algorithm, but sum of edges costs on route must be less ...
7
votes
4answers
1k views
Algorithm: shortest path between all points
Suppose I have 10 points. I know the distance between each point.
I need to find the shortest possible route passing through all points.
I have tried a couple of algorithms (Dijkstra, Floyd ...
7
votes
2answers
990 views
Finding the shortest path between two points on a grid, using Haskell
This is a problem that I can easily enough solve in a non-functional manner.
But solving it in Haskell is giving me big problems. Me being inexperienced when it comes to functional programming is ...
7
votes
4answers
878 views
Finding all shortest paths from every pair of nodes on a graph
I have about 70k nodes, and 250k edges, and the graph isn't necessarily connected. Obviously using an efficient algorithm is crucial. What do you recommend?
As a side note, I would appreciate advice ...
7
votes
7answers
5k views
How to calculate the shortest path between two points in a grid
I know that many algorithms are available for calculating the shortest path between two points in a graph or a grid, like breadth-first, all-pairs (Floyd's), Dijkstra's.
However, as I noticed, all of ...
7
votes
8answers
1k views
What algorithm can I use to find the shortest path between specified node types in a graph?
This is the problem:
I have n points (p1, p2, p3, .. pn), each of them can connect to any other with a determined cost x.
Each point belongs to one of a set of point-types (for example "A" "B" "C" ...
6
votes
2answers
246 views
Finding kth-shortest paths?
Finding the shortest path between two points in a graph is a classic algorithms question with many good answers (Dijkstra's algorithm, Bellman-Ford, etc.) My question is whether there is an efficient ...
6
votes
4answers
296 views
Fastest implementation for All-pairs shortest paths problem?
I have a weighted graph 30k nodes 160k edges, no negative weights.
I would like to compute all the shortest paths from all the nodes to the others.
I think I cannot assume any particular heuristics to ...
6
votes
1answer
359 views
C++ k shortest paths algorithm
Does someone know if there is any production-ready K-shortest-paths algorithm for C++?
The only available implementation (k-shortest-paths), unfortunately, leaks memory, has counter-intuitive ...
6
votes
1answer
438 views
A* implementation in PHP validation
This is a code that I got from the site here and I'd like to know whether this implementation of A* is correct. I have looked at it and compare it with the wikipedia page and it seems valid.. The ...
6
votes
3answers
780 views
Does dijkstras algorithm relax the edges of the shortest path in order?
In "Introduction to algorithms, 3rd edition" exercise 24.3-5 wants an example that this is wrong (not always true). Is that possible? In my mind this is impossible because every edge is relaxed at a ...
6
votes
8answers
3k views
Shortest path to transform one word into another
For a Data Structures project, I must find the shortest path between two words (like "cat" and "dog), changing only one letter at a time. We are given a Scrabble word list to use in finding our path. ...
5
votes
2answers
123 views
Dynamically updating shortest paths
I have a graph on which I frequently need to know all shortest paths (or rather their lengths). Because I do not want to recalculate them I store them in a simple array and just retrieve them from ...
5
votes
1answer
306 views
how to find the best three routes using A* algorithm
In A* usually the result that you get is only one path. Is it possible though for a given origin and destination to have 3 recommended path according to A*? So the second returned is the second best ...
5
votes
3answers
511 views
Shortest One-Way Path Through Multiple Nodes
I have a series of graph coordinates and I need to find the shortest one-way path through them all. I have no predetermined start/end but each point must only be touched once and returning to the ...
5
votes
2answers
642 views
How to minimize total cost of shortest path tree
I have a directed acyclic graph with positive edge-weights. It has a single source and a set of targets (vertices furthest from the source). I find the shortest paths from the source to each target. ...
5
votes
1answer
1k views
A* heuristic: Shortest path passing once in multiple points
I'm trying to come up with a good and fast heuristic for a clear-map pacman game.
My heuristic is trying to calculate the smallest distance possible that the pacman needs to travel to go to every ...
4
votes
4answers
318 views
Negative weights using Dijkstra Algorithm
I am trying to understand why Dijkstra will not work with negative weights. Reading an example on Shortest Paths, I am trying to figure out the following scenario:
2
A-------B
\ /
3 \ / -2
...
4
votes
1answer
264 views
What data structures to use for Dijkstra's algorithm in Erlang?
Disclaimer: The author is a newbie in Erlang.
Imagine, we have a graph consisting of 1M nodes, and each node has 0-4 neighbours (the edges are emanating from each node to those neighbours, so the ...
4
votes
1answer
180 views
who knows Sedgewick-Vitter algorithm?
I have to realize Dijkstra and Sedgewick-Vitter algorithms without using Fibonacci heap. Information about Dijkstra full internet, but I couldn't find pseudo code or examples of Sedgewick-Vitter ...
4
votes
3answers
2k views
Dijkstra vs. Floyd-Warshall: Finding optimal route on all node pairs
I am reading up on Dijkstra's algorithm and the Floyd-Warshall algorithm. I understand that Dijkstra's finds the optimal route from one node to all other nodes and Floyd-Warshall finds the optimal ...
4
votes
8answers
506 views
Interview: Find shortest path to few elements [closed]
There is a museum organized as NxN room. Some rooms are locked and inaccessible. Other rooms are open and some rooms have guards. Guards can only move north, south, east and west, only through open ...
4
votes
2answers
375 views
Non-cycle path to all nodes
Is there an algorithm or set of algorithms that would let you find the shortest walking distance from an arbitrary start node so that every node gets visited in a weight, undirected graph? It's not ...
4
votes
1answer
993 views
Modification of shortest path algorithm (route from a node to itself)
I am applying the all-pairs shortest path algorithm (Floyd-Warshall) to this directed graph:
The graph is represented by its adjacency matrix. The simple code looks like this:
public class ...
4
votes
1answer
1k views
Performance of Bellman–Ford shortest path algorithm
I implemented the solution of Bellman - Ford algorithm with a queue and I compared its performance with the Dijkstra algorithm. They were pretty close and that was a surprise for me because the ...
3
votes
2answers
103 views
Decompose cyclic graph into minimal number of shortest path subgraphs
Given a cyclic graph, I'm looking for an algorithm that decomposes this graph into acyclic subgraphs. Each of these subgraphs would have a root vertex, where this vertex was the source from which the ...
3
votes
2answers
155 views
Algorithms for bidirectional graphs
Say I have a graph (network) of nodes, with weightings on the following:
1. travelling one way on a link between two nodes.
2. travelling the other way on a link between two nodes (these might be ...
3
votes
4answers
509 views
Distances between houses, Google Directions API query limit is too low, need better algorithm
I need to rent two houses. I want them to be as close as possible. There are about 300 houses available for rent. I wish to use the Google Maps Directions API to calculate the walking distance between ...
3
votes
1answer
159 views
python-constraint: setting a constraint dependent on a function's output
I've been making a system that takes in data about drivers, potential passengers and their locations, and attempts to optimise the number of passengers that can get a lift with a driver given some ...
3
votes
1answer
599 views
Modified shortest path using Dijkstra's or Bellman–Ford's algorithm
How can we use Dijkstra's or Bellman–Ford's algorithm to find shortest path in a graph whose some of edges are affected if we go specific vertices. Such that, the affected edge's length will be more ...
3
votes
7answers
634 views
What are the applications of the shortest-path-algorithm?
The shortest path between nodes in a graph can be found by several algorithms (Dikstra, A-star, etc).
But what applications does this problem have? (I know quite a few already, but I would like to ...
3
votes
1answer
563 views
What is meant by diameter of a network?
The diagram shown on this link of the "A graph with 6 vertices and 7 edges where the vertex no 6 on the far-left is a leaf vertex or a pendant vertex." has DIAMETER 4? right or wrong?
Definitions are
...
3
votes
1answer
240 views
Floyd-Warshall visualisation suggestions?
I'm after some ideas for demonstrating the usefulness of Floyd-Warshall visually. So far all I can think of is generating a random graph, allowing the user to select a start/finish and highlight the ...
3
votes
1answer
304 views
Suggestions for KSPA on undirected graph
There is a custom implementation of KSPA which needs to be re-written. The current implementation uses a modified Dijkstra's algorithm whose pseudocode is roughly explained below. It is commonly known ...
3
votes
5answers
244 views
Generating a picture/graphic of a graph
In working on a shortest path algorithm across a network I would like to generate a picture of the network. I'd like to represent nodes (circles), links (lines), cost to traverse the link (number in ...
2
votes
1answer
85 views
Shortest Paths with Resource Constraints
I have a directed acyclic graph and need to find the shortest paths with resource constraints. My constraint is that the paths selected must have a minimum number of a set resource consumed.
...
2
votes
2answers
78 views
Shortest path in a directed, unweighted graph with a selection criterion between multiple shortest paths?
I am looking for the best way to solve this variation on the shortest-path problem:
I have a directed graph with unweighted edges. I need to be able to find the shortest path between any two nodes, ...
2
votes
1answer
109 views
How does a Breadth-First Search Work When Looking for Shortest Path (Java)
I've done some research, and I seem to be missing one small part of this algorithm. I understand how a Breadth-First Search works, but I don't understand how exactly it will get me to a specific path, ...
2
votes
1answer
147 views
Shortest path between two points in a Grid (Matlab)
I'm trying to find the shortest path between two points in a grid with no obstacles and move in all directions (N NE E ES S SW W WN).
It seems to be a common task... Is this not implemented already ...
2
votes
1answer
127 views
shortest path for travel
Given connected line segments A->B->C->D (A->B is a line segment, then B->C is another and so on), how to find the minimum cost of traveling from A->D given the following options?
You can follow the ...