Multiple shortest path queries on a big graph
Difference between en1 and en2, changed 168 character(s)
Recently my friend told me about the following problem. We are given connected undirected weighted graph with _n_ ≤ 100000 vertices and _m_ ≤ 400000 edges. Now we have to answer _q_ ≤ 2500 queries. In each query you have to find shortest path between given pair of vertices.↵

I am curious how to solve this problem efficiently. Obviously we can run Dijkstra algorithm _q_ times, but on a such a big graph 
I suppose this will be definitely too slow. The only speed ups I know is mcame up with are:↵

1. M
eet in the middle technique. For each query we can run Dijkstra algorithm from source and target vertex and stop after finding the first path. Still
2. After running Dijkstra search for answer to the other queries in tree of the shortest paths.↵

I believe that
 in pessimistic case itthey will be as slow as naive solution.↵

Do you know any faster solution?

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en2 English m.boniecki 2021-02-25 01:26:51 168 Add one more possible speedup (published)
en1 English m.boniecki 2021-02-19 17:47:00 766 Initial revision (saved to drafts)