Here is a problem from Algorithms book by Vazirani

The input to this problem is a tree T with integer weights on the edges. The weights may be negative, zero, or positive. Give a linear time algorithm to nd the shortest simple path in T. The length of a path is the sum of the weights of the edges in the path. A path is simple if no vertex is repeated. Note that the endpoints of the path are unconstrained.

HINT: This is very similar to the problem of nding the largest independent set in a tree.

How can I solve this problem in linear time?

Here is mine algorithm but I'm wonder if it is linear time but it is nothing differ than depth-first:

  1. Traverse tree (depth-first)
  2. Keep the indexes (nodes)
  3. add the values
  4. do (1) till the end of tree
  5. compare the sum and print the path and sum

this problem is similar this topic but there is no certain answer.

link|improve this question

Vazirani approximation book? I can't understand problem, every edge in tree is path, and smallest edge is shortest path, would you clarify me by this, or say exact name of problem too google it? did you mean finding shortest path tree? or root of tree? – Saeed Amiri Feb 12 '11 at 10:13
@Saeed - the smallest edge is not necessarily the shortest path, because you can have negative weights. – IVlad Feb 12 '11 at 10:19
@IVlad, yes I'd forgot it :) – Saeed Amiri Feb 12 '11 at 10:22
what about empty path - it is the shortest, isn't it? You haven't put a single requirement of what tha path should contain. It doesn't make sense. – Tomas Oct 18 '11 at 1:46
feedback

1 Answer

up vote 5 down vote accepted

This problem is pretty much equivalent to the minimum sum subsequence problem, and can be solved in a similar manner by dynamic programming.

We will calculate the following arrays by using DF searches:

dw1[i] = minimum sum achievable by only using node i and its descendants.
pw1[i] = predecessor of node i in the path found for dw1[i].
dw2[i] = second minimum sum achevable by only using node i and its descendants,
         a path that is edge-disjoint relative to the path found for dw1[i].

If you can calculate these, take min(dw1[k], dw1[k] + dw2[k]) over all k. This is because your path will take one of these basic shapes:

  k              k
  |     or     /   \
  |           /     \
  | 

All of which are covered by the sums we're taking.

Calculating dw1

Run a DFS from the root node. In the DFS, keep track of the current node and its father. At each node, assume its children are d1, d2, ... dk. Then dw1[i] = min(min{dw1[d1] + cost[i, d1], dw1[d2] + cost[i, d2], ..., dw1[dk] + cost[i, dk]}, min{cost[i, dk]}). Set dw1[i] = 0 for leaf nodes. Don't forget to update pw1[i] with the selected predecessor.

Calculating dw2

Run a DFS from the root node. Do the same thing you did for dw1, except when going from a node i to one of its children k, only update dw2[i] if pw1[i] != k. You call the function recursively for all children however. It would look something like this in pseudocode:

df(node, father)
    dw2[node] = inf
    for all children k of node
        df(k, node)

        if pw1[node] != k
            dw2[node] = min(dw2[node], dw1[k] + cost[node, k], cost[node, k])
link|improve this answer
Looks promising but I have a few suggestions: (1) Under "Calculating dw1" when you say "descendants" I believe you mean "children" ("descendants" usually means all children and children's children, recursively); (2) The calculation of each of dw1[i], dw2[i] and up[i] should include 0 in the min{...} operation to allow the path to terminate there (so that for example a tree containing no negative-length edges will return a score of 0); (3) I believe your calculation of dw2[i] should exclude the optimal edge leading... – j_random_hacker Feb 12 '11 at 11:30
... from vertex i only, but at lower levels should include optimal edges (ask if you need clarification); (4) up[i] calculations can be simplified by noting that every path is of 1 of 2 kinds: either it is "straight down" or it contains an "uppermost corner" (a vertex v such that the parent of v is not in the path) -- any path containing an uppermost corner at some vertex v will be found by considering dw1[v] + dw2[v], so up[i] only needs to calculate costs on a straight path back towards the root (i.e. up[i] will be the minimum cost of a "straight-down" path ending at i). – j_random_hacker Feb 12 '11 at 11:35
@j_random_hacker - (1) agreed, will update. (2) you mean a null path? I would consider a path to contain at least one edge, that's why I didn't add 0. It's easy enough to modify if the OP wants to accept null paths. (3) isn't that what happens? We're dealing with a tree, so if you exclude the optimal edge leading from i, you automatically exclude the rest as well. (4) I'm not sure what you mean here. In my solution, up doesn't store only straight paths from i to the root. If you do that, how will you get your answer? Becase the minimum mustn't necessarily be a straight path. – IVlad Feb 12 '11 at 11:47
More on (3) - if you mean the check shouldn't be done on lower levels, I think that's wrong, because then you will have overlapping min-cost and second min-cost paths for some descendants. They must be edge-disjoint for every node, otherwise you'll get wrong answers when doing dw1[k] + dw2[k], because the two paths will share common edges. – IVlad Feb 12 '11 at 11:49
1  
@j_random_hacker - I just realized that while you wrote your comment and got rid of it :). Is putting dw2[k] in the minimum necessary? It will never be smaller than dw1[k]. Some time ago I solved a problem which asked queries such as what's the shortest path containing q?, so I was set on using up. Realize it's not needed here though. – IVlad Feb 12 '11 at 12:40
show 9 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.