Lowest common ancestor

From PEGWiki
Revision as of 23:03, 5 April 2016 by 47.18.195.152 (Talk) (Properties)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

The lowest common ancestor or least common ancestor (LCA) of a nonempty set of nodes in a rooted tree is the unique node of greatest depth that is an ancestor of every node in the set. (In biology, this corresponds to the most recent common ancestor of a set of organisms.) We will denote the LCA of a set of nodes S = \{v_1, v_2, ..., v_n\} by \operatorname{LCA}(v_1, v_2, ..., v_n) or by \operatorname{LCA}(S).

Properties[edit]

The proofs of these properties are left as an exercise to the reader.

  1. \operatorname{LCA}(\{u\}) = u.
  2. u is an ancestor of v if and only if \operatorname{LCA}(u,v) = u.
  3. If neither u nor v is an ancestor of the other, than u and v lie in different immediate subtrees of \operatorname{LCA}(u,v). (That is, the child of the \operatorname{LCA}(u,v) of which u is a descendant is not the same as the child of the \operatorname{LCA}(u,v) of which v is a descendant.) Furthermore, the \operatorname{LCA}(u,v) is the only node in the tree for which this is true.
  4. The entire set of common ancestors of S is given by \operatorname{LCA}(S) and all of its ancestors (all the way up to the root of the tree). In particular, every common ancestor of S is an ancestor of \operatorname{LCA}(S).
  5. \operatorname{LCA}(S) precedes all nodes in S in the tree's preordering, and follows all nodes in S in the tree's postordering.
  6. If S = A \cup B with A and B both nonempty, then \operatorname{LCA}(S) = \operatorname{LCA}(\operatorname{LCA}(A),\operatorname{LCA}(B)). For example, \operatorname{LCA}(u,v,w) = \operatorname{LCA}(u,\operatorname{LCA}(v,w)). (The LCA shares this property with the similar-sounding lowest common multiple and greatest common divisor; and this property can be used to compute the LCA of arbitrarily large sets using only binary LCA computations.)
  7. \operatorname{LCA}(u,v) is the unique highest (least deep) node on the unique simple path from u to v.
  8. d(u,v) = h(u) + h(v) - 2h(\operatorname{LCA}(u,v)), where d represents the distance between two nodes and h represents the height of a node.

Algorithms and variations[edit]

Finding the lowest common ancestor of a given pair of nodes in a given tree is an extensively studied problem.

Naive[edit]

The naive algorithm runs in O(h) time, where h is the height of the tree. It works by computing the sequences u, P(u), P(P(u)), ..., r (where P represents the parent of a node and r the root of the tree) and v, P(v), P(P(v)), ..., r for the two given nodes u and v. The first element of the longest common suffix of these two sequences is then trivially the LCA. Note that if the tree is well-balanced, then this approach will actually perform quite well (around O(\log N) time per query, where N is the size of the tree).

Offline[edit]

If we want to find the LCAs of multiple pairs of nodes in the same tree, and we know all the pairs of nodes in advance, then we can use Tarjan's offline LCA algorithm. It is not easy to picture how this algorithm works, but it is quite easy to implement it. It uses O(N) disjoint set operations, so can easily be made to run in O(N \alpha(N) + M) time (where M is the size of the input), barely slower than linear. It is also possible to implement it so that it runs in O(N+M) time (that is, linear)[1], but this is unlikely to give faster code in practice.

Reduction to RMQ[edit]

Example tree for this section

It is possible to solve any instance of the LCA problem by reducing it to an instance of the range minimum query (RMQ) problem. In particular, given a rooted tree, we can construct an array with the property that the LCA of any pair of nodes in the tree can be determined by finding the RMQ of some segment of that array.

The correct way to construct this array may be described intuitively as "walking" around the tree. The following pseudocode expresses exactly how this "walk" is constructed, using a depth-first search:

walk(node u)
    print u
    for v ∈ u's children
        walk(v)
        print u

In other words, a node with k children is visited k+1 times; once when we first encounter it by recursing down from its parent, and once again after each of its child subtrees has been fully explored. In the example tree shown to the right, if we assume that we visit children in left-to-right order as shown on the diagram, we obtain the ordering ABDBEBFBACGCHCA. Observe that this is the same order that we would obtain if, on the diagram, we started out on the left side of the circle containing the letter "A", and started walking down along the edge between A and B, and walked "all the way around" the tree, writing down the label of each node we touched along the way. This traversal also corresponds to an Eulerian circuit of the tree, assuming that we replace each undirected edge with a pair of directed edges. Since a tree with N nodes has N-1 edges, and each edge is traversed once in each direction, this Eulerian circuit has length 2N-2; and hence it contains 2N-1 vertices.

This traversal has the very useful property that between (inclusive) any occurrence of node u in it and any occurrence of node v in it, \operatorname{LCA}(u,v) is guaranteed to appear at least once, and no other node with depth less than or equal to that of \operatorname{LCA}(u,v) will appear at all. For example, consider the positions of D and F in the traversal ABDBEBFBACGCHCA; we see that their LCA, that is, B, occurs between them, and that the nodes C and A do not occur at all.

Proof: First, we show that the LCA occurs, in two cases:
  1. If the LCA is u or v itself, then without loss of generality assume it is u. Then, clearly, between any occurrence of u and any occurrence of v (inclusive) we find an occurrence of the LCA, since the LCA is u itself.
  2. Otherwise, u and v are in different subtrees of their LCA w. Let u' and v' be the roots of these respective subtrees, and children of w. From the walk function above, it is clear that u' is first visited before any of its proper descendants (including u), and after it is last visited, none of its proper descendants will ever be visited again; the same is true of v' and its children, including v. Since neither u nor v is a descendant of the other, it is clear that, without loss of generality, all the descendants in u' are visited before descendants of v'. But w is visited immediately after the last occurrence of u', so it will occur between any descendant of u' and any descendant of v'. Therefore, it will occur between any occurrence of u and any occurrence of v.
Now, consider nodes other than the LCA that have depth less than or equal to that of the LCA. Call such a node s. s is obviously not a descendant of the LCA. Notice that u can only be visited between the entry and exit of the instance of walk with the LCA as argument, and that v too can only be visited during that time. However, only descendants of the LCA can be visited during this time, so s cannot possibly be visited. _{\blacksquare}

Now construct the array A by replacing each node in the traversal described above by its depth. The example tree gives A = [0, 1, 2, 1, 2, 1, 2, 1, 0, 1, 2, 1, 2, 1, 0]. This array has size 2N-1. Given u and v, locate two elements in A, one that corresponds to u, and one that corresponds to v. (This can be done in constant time using a lookup table that we compute while we are doing the traversal). We know from the preceding property that the LCA is the unique shallowest node corresponding to any element located between these two elements. Therefore, by finding the position of some minimum element in this range, we will locate the LCA. So if we can answer range minimum queries in O(f(M)) time (where M is the size of the array) after O(g(M)) preprocessing time, then we can use this technique to answer LCA queries in O(f(2N-1)) time and O(2N-1 + g(2N-1)) preprocessing time. We do so by constructing the array A using O(2N-1) time and space, carrying out whatever preprocessing on A our RMQ algorithm requires, and then converting each LCA query into an RMQ.

Since there is an algorithm that solves RMQ with linear preprocessing time and constant query time, the LCA problem can also be solved in linear preprocessing time and constant query time.

With heavy-light decomposition[edit]

The heavy-light decomposition provides an easy way to ascend a tree quickly, which allows an adaptation of the naive algorithm to run in O(\log N) time after linear preprocessing time. This is not asymptotically optimal, as the LCA-to-RMQ reduction discussed in the previous section allows queries to be performed in constant time. However, if the decomposition is being used for other purposes than simply answering LCA queries, then the LCA query time might not dominate the overall runtime, anyway.

Dynamic[edit]

In the fully dynamic variant of the LCA problem, we must be prepared to handle LCA queries intermixed with operations that change the tree (that is, rearrange the tree by adding and removing edges). In general, we suppose that we have a forest of N nodes in which we can arbitrarily link together two nodes from different trees, cut an edge (thus dividing a tree into two trees), or change the root of a tree on a whim, and the answer to an LCA query is either a node or the finding that the two nodes given are in different trees.

This variant can be solved using O(\log N) time for all modifications and queries. This is done by maintaining the forest using the dynamic trees data structure with partitioning by size; this then maintains a heavy-;light decomposition of each tree, and allows LCA queries to be carried out in logarithmic time as discussed in the previous section.

References[edit]

  1. Gabow, H. N.; Tarjan, R. E. (1983), "A linear-time algorithm for a special case of disjoint set union", Proceedings of the 15th ACM Symposium on Theory of Computing (STOC), pp. 246–251, doi:10.1145/800061.808753.