Maximum cardinality matching

Maximum cardinality matching is a fundamental problem in graph theory.[1] We are given a graph G, and the goal is to find a matching containing as many edges as possible; that is, a maximum cardinality subset of the edges such that each vertex is adjacent to at most one edge of the subset. As each edge will cover exactly two vertices, this problem is equivalent to the task of finding a matching that covers as many vertices as possible.

An important special case of the maximum cardinality matching problem is when G is a bipartite graph, whose vertices V are partitioned between left vertices in X and right vertices in Y, and edges in E always connect a left vertex to a right vertex. In this case, the problem can be efficiently solved with simpler algorithms than in the general case.

1 Algorithms for bipartite graphs

1.1 Flow-based algorithm

The simplest way to compute a maximum cardinality matching is to follow the Ford–Fulkerson algorithm. This algorithm solves the more general problem of computing the maximum flow. A bipartite graph (X + Y, E) can be converted to a flow network as follows.

Add a source vertex s; add an edge from s to each vertex in X.
Add a sink vertex t; add an edge from each vertex in Y to t.
Assign a capacity of 1 to each edge.
Since each edge in the network has integral capacity, there exists a maximum flow where all flows are integers; these integers must be either 0 or 1 since the all capacities are 1. Each integral flow defines a matching in which an edge is in the matching if and only if its flow is 1. It is a matching because:

The incoming flow into each vertex in X is at most 1, so the outgoing flow is at most 1 too, so at most one edge adjacent to each vertex in X is present.
The outgoing flow from each vertex in Y is at most 1, so the incoming flow is at most 1 too, so at most one edge adjacent to each vertex in Y is present.
The Ford–Fulkerson algorithm proceeds by repeatedly finding an augmenting path from some x ∈ X to some y ∈ Y and updating the matching M by taking the symmetric difference of that path with M (assuming such a path exists). As each path can be found in O(E) time, the running time is O(VE), and the maximum matching consists of the edges of E that carry flow from X to Y.

1.2 Advanced algorithms

An improvement to this algorithm is given by the more elaborate Hopcroft–Karp algorithm, which searches for multiple augmenting paths simultaneously. This algorithm runs in {\displaystyle O({\sqrt {V}}E)}O({\sqrt {V}}E) time.

The algorithm of Chandran and Hochbaum[2] for bipartite graphs runs in time that depends on the size of the maximum matching k, which for |X| < |Y| is

{\displaystyle O\left(\min{|X|k,E}+{\sqrt {k}}\min{k^{2},E}\right).}{\displaystyle O\left(\min{|X|k,E}+{\sqrt {k}}\min{k^{2},E}\right).}
Using boolean operations on words of size {\displaystyle \lambda }\lambda the complexity is further improved to[2]

{\displaystyle O\left(\min \left{|X|k,{\frac {|X||Y|}{\lambda }},E\right}+k^{2}+{\frac {k^{2.5}}{\lambda }}\right).}{\displaystyle O\left(\min \left{|X|k,{\frac {|X||Y|}{\lambda }},E\right}+k^{2}+{\frac {k^{2.5}}{\lambda }}\right).}
More efficient algorithms exist for special kinds of bipartite graphs:

For sparse bipartite graphs, the maximum matching problem can be solved in {\displaystyle {\tilde {O}}(E^{10/7})}{\tilde {O}}(E^{10/7}) with Madry’s algorithm based on electric flows.[3]
For planar bipartite graphs, the problem can be solved in time O(n log3 n) where n is the number of vertices, by reducing the problem to maximum flow with multiple sources and sinks.[4]

2 Algorithms for arbitrary graphs

The blossom algorithm finds a maximum-cardinality matching in general (not necessarily bipartite) graphs. It runs in time {\displaystyle O(|V|^{2}\cdot |E|)}{\displaystyle O(|V|^{2}\cdot |E|)}. A better performance of O(√VE) for general graphs, matching the performance of the Hopcroft–Karp algorithm on bipartite graphs, can be achieved with the much more complicated algorithm of Micali and Vazirani.[5] The same bound was achieved by an algorithm by Blum (de)[6] and an algorithm by Gabow and Tarjan.[7]

An alternative approach uses randomization and is based on the fast matrix multiplication algorithm. This gives a randomized algorithm for general graphs with complexity {\displaystyle O(V{2.376})}O(V{2.376}).[8] This is better in theory for sufficiently dense graphs, but in practice the algorithm is slower.[2]

Other algorithms for the task are reviewed by Duan and Pettie[9] (see Table I). In terms of approximation algorithms, they also point out that the blossom algorithm and the algorithms by Micali and Vazirani can be seen as approximation algorithms running in linear time for any fixed error bound.

3 Applications and generalizations

By finding a maximum-cardinality matching, it is possible to decide whether there exists a perfect matching.
The problem of finding a matching with maximum weight in a weighted graph is called the maximum weight matching problem, and its restriction to bipartite graphs is called the assignment problem. If each vertex can be matched to several vertices at once, then this is a generalized assignment problem.
A priority matching is a particular maximum-cardinality matching in which prioritized vertices are matched first.
The problem of finding a maximum-cardinality matching in a hypergraph is NP-complete even for 3-uniform hypergraphs.[10]

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值