Shortest path problems are problems addressing finding the shortest path from a single source to a target source, usually in a graph.
0
votes
1answer
50 views
Shortest Path by rolling a dice
I have a difficult problem to solve (at least that's how I see it). I have a die (faces 1 to 6) with different values (others than [1-6]), and a board (n-by-m). I have a starting position and a finish ...
1
vote
0answers
48 views
All Shortest Paths To A Given Vertex
Given a directed graph G=(V,E) and a weight function w : E - > R+ (only positive weights for edges in the graph) , I need to find all the shortest paths from every vertex v in V to a given vertex k.
...
2
votes
1answer
17 views
Finding shortest path
I have a set of points in a graph. I want to find the shortest path connecting a subset of this graph using lines which are either horizontal, vertical or at 45 degree left or right. Can anybody ...
-1
votes
0answers
55 views
Shortest path with odd weight [closed]
Let G be a directed graph with non-negative weights. We call a path between two vertices an "odd path" if its weight is odd.
We are looking for an algorithm for finding the weight of the shortest ...
-1
votes
0answers
28 views
Shortest path candidate [closed]
Let G = (V,E) be a directed graph with a weight function w such that there are no negative-weight cycles, and let v be a vertex such that there is a path from v to every other vertex. Let f : V to ...
0
votes
1answer
36 views
All shortest paths for weighted graphs with networkx?
I have a graph composed by two different sets of edges. The first set is made by edges of weight 1 (list 1). The second set is made by edges of weight 2 (list 2). First, I create the graph with ...
2
votes
4answers
150 views
FInding All Shortest Paths Between Two Vertices
Given a directed graph G=(V,E), two vertices s, t and two weight functions w1, w2, I need to find the shortest path from s to t by w2 among all the shortest paths between s to t by w1.
First of all , ...
1
vote
3answers
92 views
How to find the shortest path cost?
I have Two Arrays
string[] city = {"A","B","C","D"}
And the cost of connecting them say
int[] cost ={ 2,1,3,2,4,3}
The task is to find the shortest path cost which will be 6 here.
Why?
...
1
vote
0answers
23 views
Directed or bi-directed and MSSP
Firstly i wanted to ask. If I have a undirected graph and split all the edges into two directed edges is it still called directed or it becomes bi-directed?
The main question is i have a graph with ...
-1
votes
0answers
33 views
Can anybody give me some tips on how to compute out all the equal cost multi-paths (ECMP) in an undirected graph? [closed]
Supports we have an undirected graph G, which each edge has the same weight (like cost=1).
And we need to compute out all the shortest paths from given vertex s to t, all of the paths have the same ...
2
votes
0answers
62 views
Shortest path on PHP array [closed]
I am looking for an answer and everything I tried so far is failing. This is my sample array displayed as an image:
But this array is pretty big and this one is just a scaled version of original ...
-3
votes
0answers
64 views
C# Dynamic Programming Shortest Path [closed]
I need a dynamic code to calculate the shortest path from a specific node (start node) in a graph to a specific node (destinantion node)
4
votes
3answers
126 views
Travel Time Minimization Algorithm
I am looking for guidance in creating an algorithm to minimize the total travel time for a group of travelers to get to a group of fixed destinations. The travelers do not all start in the same place, ...
2
votes
2answers
54 views
Shortest path with one skippable edge
I have this problem: "Shortest path with one skippable edge. Given an edge-weighted digraph, design an E*log(V) algorithm to find a shortest path from s to t where you can change the weight of any one ...
1
vote
1answer
155 views
Multiple shortest paths using dijkstra
I am currently using Dijkstra Algorithm for find shortest path. This algorithm gives me best shortest path but I am want to have 2 or more paths. How can i achieve this. Algorithm is as following.
...
3
votes
4answers
126 views
Is BFS best search algorithm?
I know about Dijkstra's agorithm, Floyd-Warshall algorithm and Bellman-Ford algorithm for finding the cheepest paths between 2 vertices in graphs.
But when all the edges have the same cost, the ...
0
votes
1answer
62 views
shortest path from multiple Sets
I have to find the shortest path beetween nodes in various sets, where I can use node only once from every set. Every node is connected via distance to every others nodes. There is exception where ...
2
votes
0answers
94 views
Shortest weight constrained path to Partition reduction
I am trying to prove NP-completness of a shortest weight constrained path problem. I have read multiple papers, but for love of god, cannot figure out how to show a reduction of this to partition ...
4
votes
3answers
151 views
How to find the shortest path between nodes?
I am working on a mapping application that finds the shortest route between the things a user wants. Each thing the user wants (such as bread or gas) has multiple possible locations. Currently, I am ...
-6
votes
0answers
52 views
recursive program only for experts [closed]
in the past two months i try to create an app that man students to lessons , one student per lesson. I have 10 students and 5 personal guides (personal guide is a guide that have two specific students ...
0
votes
3answers
141 views
Shortest Path LinkedList
I want to find the shortest path on a list of linked list, which represents a directed graph with cost per edge/path.
The output would look something like this, It tells me the cost it would take me ...
0
votes
0answers
64 views
overwriting on excel files using java jxl
I made a programme that calculates shortest paths using some data contained in an excel file.
The programme reads all the data in this file to create nodes. if the users input two values, then this ...
-2
votes
1answer
114 views
Matlab dijkstra shortest path: list of nodes
I would be really glad if you could suggest me a Matlab library containing functions that will allow me to list:
1) all paths from a source to dest node on a network identified by its adjacency ...
2
votes
1answer
75 views
IGRAPH IN R: Find the path between vertices that maximizes the product of edge attributes
I need to find a way to find the path between two vertices that maximizes the product of edge attributes. In my case the edge attribute is a probability of connection.
Let's assume I want to find the ...
0
votes
1answer
39 views
How can I compute the distance between two patches?
I need to find the minimum distance between patches in front of my agent to a certain patch (goal), in order to select the patch that would create the most optimal (shortest) path. The primitive ...
0
votes
1answer
63 views
cypher query for shortest path is too slow
I use Neo4j1.9m05. I want to calculate shortest path between every pair of nodes. Now I use Cypher query "START a=node(1),b =node(1-1000) MATCH p=shortestPath(a-[:cooperate*..50]-b) RETURN ...
2
votes
4answers
114 views
is there is a route from city a to city b in no more than x days?
I was in a trading firm interview, I was asked this question,
you are travelling accross the state in a buses, the buses can stop at any C possible cities and you need to find a way to go from city ...
0
votes
1answer
163 views
Pathfinding in adjacency matrix
Given an adjacency matrix, how would you find the shortest paths between two nodes while traversing to each point at least once and returning how many moves it takes?
Example
Given this array
...
0
votes
0answers
31 views
A-star algorithm and Minesweeper [duplicate]
I am trying to implement minesweeper solver in lisp.
I HAVE to use A* algorithm. And i don't need to open all unopened fields...I need to find positions of all mined fields. And of course it has to ...
0
votes
1answer
174 views
Shortest path between two given nodes in unweighted graph/tree
I am looking for an algorithm to determine the shortest path between two nodes in an unweighted graph by using the adjacency matrix . I know Dijkstra and Bellman - Ford, but none that found are ...
-1
votes
1answer
216 views
Traveling salesman visits certain nodes - Code [closed]
I found the following question on
Find the shortest path in a graph which visits certain nodes and found it very interesting.
One of the solutions stated was:
Something like this:
...
2
votes
1answer
79 views
Performance issues on prolog
I'm currently implementing an prolog program to calculate the shortest path between two points.
The framework exists already in a Java project. As a requirement the path must be implemented in prolog.
...
2
votes
1answer
61 views
Multiple source shortest path…Embeded plannar graph
The tree on which mssp(multiple source shortest path) can be executed, is stated in many papers that it must be an embeded plannar graph. Does this mean that there can be no edges that overlap each ...
0
votes
1answer
189 views
The first 10 shortest paths in a graph - Igraph 0.6 - Python 2.7
I was wondering about this ever since I've started to successfully implement Igraph into my coding: Can you retrieve with get_all_shortest_paths as many shortest paths as you like. Let's say first 10.
...
-2
votes
1answer
81 views
shortest path algorithm in android [closed]
I am implementing an offline Map Navigation project in android, So I am using mbtiles as my map source. Now I want to overlay path( route ) between points in that map, Can anybody please give an idea ...
1
vote
1answer
49 views
Neo4J shortestPath through nodes in index
I'm currently using this Cypher query to find the shortest path between two nodes:
START topic=node:cities(name='amsterdam'), top=node:categories(name='world')
MATCH p=shortestPath(topic-[*]->top)
...
0
votes
1answer
48 views
Calculating shortest path with BFS in R
I'm working with R to make a breadth-first search of a network. Here is the code I have so far:
shortestPath <- function(v1,v2) {
q <- rep(0, 3931)
head <- 1
head2 <- 0
tail ...
0
votes
0answers
69 views
Minimum number of moves to get from point A to B while hitting every point in 2D array
If I have a 2D array, an origin, and a destination (all of type int) how can I find the minimum number of moves it takes to get from the origin to the destination while hitting every point on the way? ...
1
vote
0answers
41 views
Shortest Path w/ ability to destroy set number of obstacles
I have a programming assignment to find shortest path from START to GOAL in a "Sector". You can visualize the Sector as a 2D array of Nodes with one node being START and another node being GOAL. All ...
0
votes
1answer
50 views
Shortest path in an undirected graph that visits k vertices
Consider an undirected graph. There are n vertices and m edges. All the edges have a weight associated with it.
I want to device an algorithm that will take a source vertex 's', a sink vertex 't' and ...
0
votes
1answer
213 views
Floyd-Warshall with negative cycles. How do I find all undefined paths?
I have implemented the Floyd Warshall algorithm and it works, but the problem is that I don't know how I can find all paths which are not defined. I have searched around the web but I can only find ...
-1
votes
1answer
35 views
Shortest path - let the root node point to itself
I am implementing a shortest path algorithm using a linked list. Once the algorithm finds its target I want to trace backwards through the list. Is there any reason I shouldn't make the root node ...
0
votes
2answers
336 views
dijkstra's algorithm - how to return edge weights in path
I am working on a project to implement Dijkstra's shortest route algorithm in java. I have used this version in my program : LINK
My program takes a source and gives me output like this:
Distance ...
0
votes
0answers
19 views
Using graph.obj to access nodes and edges
I am currently developing an Android based journey planner (like google transit). Previously I had worked with opentripplanner so I built the Graph.obj from GTFS by using GraphBuilder tool and viewed ...
1
vote
1answer
113 views
How to solve terrain map shortest path with dynamic programming?
Given a matrix of all positive integers, starting from the left most column 0th, find the minimum path to the right most column (n - 1)th. For example:
The minimum path is the path which contains on ...
0
votes
1answer
232 views
k-Edge Shortest Path in Positive Weighted Directed Acyclic Graph
I am given a graph, G = (V, E), that is positive weighted, directed, and acyclic. I am to design an algorithm that runs in O(k(m + n)) for reporting a k-edge shortest path from s to t. A k-edge ...
0
votes
0answers
82 views
python networkx : generate graph from shortest path
I have a Digraph. From a list of target nodes, i extract a subgraph. Now i would like to get the shortest path between all the target nodes.
For example, let's imagine i have target nodes 3,4,5 and ...
2
votes
3answers
128 views
Shortest Path in a Trie
For a Data Structures project, I must find the shortest path between two words like "cat" and "dog but i'm only allowed to change one letter at a time. I'm trying to do it by implementing a trie, and ...
0
votes
1answer
102 views
Decide Whether All Shortest Paths From s to t Contain The Edge e
Let G = (V;E) be a directed graph whose edges all have non-negative weights. Let s,t be 2 vertices in V, and let e be an edge in E.
Describe an algorithm that decides whether all shortest paths from s ...
0
votes
0answers
62 views
CUDA dijkstra's shortest path from source to target [duplicate]
I have been trying to find a function that uses CUDA which is able to find the shortest path for positive-weight directed graph (much like Dijkstra's algorithm).
Can someone lead me to the right ...




