how to determine maximum route cost in a n high numeric pyramid

前端 未结 6 1369
小鲜肉
小鲜肉 2021-02-09 06:15

I\'ve got a numeric pyramid like this

       7
      4 8
     1 8 9
    2 4 6 7
   4 6 7 4 9
  4 9 7 3 8 8

routes: 32

every number indexed by

相关标签:
6条回答
  • 2021-02-09 06:18

    as you can Consider the tree a DAG Do a Topological sort then relax(relax to the max not min) each edge as they are in the topological sort O(E+V) .

    0 讨论(0)
  • 2021-02-09 06:26

    Think of your pyramid as a tree with the root at the top of the pyramid: I think you want the route with the maximum cost from the root to any of the leaf nodes (bottom of the pyramid). OK, it's not actually a tree, because a node may have two parents, in fact you can get to a node at level i from at most two nodes at level i-1.

    Anyway, I think you can compute the route with the maximum cost by using dynamic programming. Let me rewrite your data in a matrix like way:

    7 
    4 8 
    1 8 9 
    2 4 6 7 
    4 6 7 4 9 
    4 9 7 3 8 8
    

    and let the missing elements of the matrix be 0. Let's call this matrix v (for values). Now you can build a matrix c (for costs) where c(i,j) is the maximum cost for reaching the tree node at position (i,j). You can compute it with this recurrence:

    c(i,j) = v(i,j) + max{ c(i-1,j-1), c(i-1,j) }

    where c(h,k) is 0 when you get to a position out of the matrix. Essentially we say that the maximum cost for getting to node at position (i,j) is the cost of the node itself plus the maximum between the costs of getting to its two possible parents at level i-1.

    Here is c for your example:

    7     
    11 15    
    12 23 24   
    14 27 30 31  
    18 33 37 35 40 
    22 42 44 40 48 48
    

    For instance, let's take i=3, j=2:

    c(3,2) = v(3,2) + max{ c(2,1), c(2,2) }
           = 6      + max{ 23    , 24     }
           = 30
    

    From c you see that the most expensive rout costs 48 (and you have two of them).

    0 讨论(0)
  • 2021-02-09 06:30

    I suggest you look at Dijkstra's Algorithm and A*.

    I believe Dijkstra's is more accurate than A*, but slower.

    0 讨论(0)
  • 2021-02-09 06:31

    Simplest way is to go bottom up and you have O(N) compexity. This case you do not need dynamic programming or recursion. Just compose another tree where number at higher level is max of numbers of lower layer.

    0 讨论(0)
  • 2021-02-09 06:40

    If the numbers represent the cost to travel between 2 nodes of a graph, then Dijkstra's algorithm will find the shortest path.

    0 讨论(0)
  • 2021-02-09 06:41

    I think that even if you use the Suggested Dijkstra's Algorithm, you still have to test every route. First of all because there is no single starting and end point, but there are 50 starting points for the end point. So the algorithm has to be tested 50 times.

    And because every option has 2 paths, there is no way of skipping one. You can never rule out a path untill you are at the very end.

    So I dont think there is a quicker way to find the longest path (so not the shortest as in Dijkstra's Algorithm) then to test all routes.

    0 讨论(0)
提交回复
热议问题