Maximum matching by Edmonds

From Algowiki
Jump to navigation Jump to search

Abstract view

Algorithmic problem: Cardinality-maximal matching

Type of algorithm: recursion.

Invariant: Each recursive step returns a cardinality-maximal matching of its input graph.

Variant: The number of nodes decreases.

Recursion anchor

The graph search does not find an augmenting path, nor does it run into a blossom.

Recursive step

Abstract view: Apply the modified repeated graph search from the classical algorithm for the restriction to bipartite graphs. More specifically, choose a BFS or another graph traversal strategy that will never return to the start node (this requirement excludes DFS).

The search maintains a boolean flag even/odd, which indicates the parity of the distance of the current node from the start node of the current search. Also, each node has a boolean label even/odd. When this node is seen for the first time, its label is set according to the flag. If a labeled node is seen again, but with another distance parity than before:

  1. The repeated graph search is terminated.
  2. A blossom [math]\displaystyle{ B }[/math] is identified.
  3. [math]\displaystyle{ B }[/math] is shrunken, giving [math]\displaystyle{ G'=(V',E') }[/math] and the restriction [math]\displaystyle{ M' }[/math] of [math]\displaystyle{ M }[/math] to [math]\displaystyle{ G' }[/math].
  4. The procedure is called recursively with [math]\displaystyle{ G' }[/math] and [math]\displaystyle{ M' }[/math].
  5. Exactly one node of [math]\displaystyle{ B }[/math] is matched by [math]\displaystyle{ M' }[/math], so extend [math]\displaystyle{ M' }[/math] in the obvious, unique way by [math]\displaystyle{ \lfloor|B|/2\rfloor }[/math] edges of [math]\displaystyle{ B }[/math].
  6. This extension of [math]\displaystyle{ M' }[/math] is returned.

Remark: In typical formulations of this algorithm, the graph search is not left open but the search strategy applied in Hopcroft-Karp is hard-coded.

Implementation of step 2: Let [math]\displaystyle{ w }[/math] be the node on which the two different parities occur, and let [math]\displaystyle{ v }[/math] be the node from which [math]\displaystyle{ w }[/math] is seen at that moment. In the arborescence constructed so far, let [math]\displaystyle{ u }[/math] denote the node such that the paths from the start node to [math]\displaystyle{ v }[/math] and [math]\displaystyle{ w }[/math] coincide up to [math]\displaystyle{ u }[/math] and part at [math]\displaystyle{ u }[/math]. Note that the incoming edge of [math]\displaystyle{ u }[/math] in the arborescence is matched because, otherwise, the arborescence could not branch at [math]\displaystyle{ u }[/math]. Therefore, the concatenation of the branch from [math]\displaystyle{ u }[/math] to [math]\displaystyle{ v }[/math], the branch from [math]\displaystyle{ u }[/math] to [math]\displaystyle{ w }[/math], and [math]\displaystyle{ \{v,w\} }[/math] is a blossom, and the search entered this blossom via its stem.

Proof: First we show: If [math]\displaystyle{ M }[/math] is not maximum, the graph search will either find an augmenting path or run into a blossom via its stem. Suppose the search does not find an augmenting path. Due to the proof in the induction step of the classical bipartite cardinality matching algorithm, the graph search runs into an odd cycle. Since we chose a graph search strategy that never returns to the start node, the remark on that proof implies that this odd cycle is a blossom, and that the search entered this blossom via its stem.

It remains to show that the returned extension of [math]\displaystyle{ M' }[/math] is cardinality-maximal for [math]\displaystyle{ G }[/math] provided [math]\displaystyle{ M' }[/math] is cardinality-maximal fpr [math]\displaystyle{ G' }[/math]. However, this follows immediately from the fundamental statement about blossoms.

Correctness

Follows immediately from the invariant.

Complexity

Statement: The asymptotic worst-case complexity is in [math]\displaystyle{ \mathcal{O}(n\!\cdot\!m) }[/math], where [math]\displaystyle{ n=|V| }[/math] and [math]\displaystyle{ m=|E| }[/math].

Proof: Due to the variant, the recursion depth is in [math]\displaystyle{ \mathcal{O}(n) }[/math]. Each recursive step is dominated by the graph traversal. The statement and remark on isolated nodes apply.