Maximally Matchable Edge
   HOME

TheInfoList



OR:

In
graph theory In mathematics and computer science, graph theory is the study of ''graph (discrete mathematics), graphs'', which are mathematical structures used to model pairwise relations between objects. A graph in this context is made up of ''Vertex (graph ...
, a maximally matchable edge in a graph is an edge that is included in at least one maximum-cardinality matching in the graph. An alternative term is allowed edge. A fundamental problem in matching theory is: given a graph ''G'', find the set of all maximally matchable edges in ''G.'' This is equivalent to finding the union of ''all'' maximum matchings in ''G'' (this is different than the simpler problem of finding a ''single'' maximum matching in ''G''). Several algorithms for this problem are known.


Motivation

Consider a
matchmaking Matchmaking is the process of pairing two or more people together, usually for the purpose of marriage, in which case the intermediary or matchmaker is also known as a marriage broker. Matchmaking may be done as a profession for a fee or it may ...
agency with a pool of men and women. Given the preferences of the candidates, the agency constructs a
bipartite graph In the mathematics, mathematical field of graph theory, a bipartite graph (or bigraph) is a Graph (discrete mathematics), graph whose vertex (graph theory), vertices can be divided into two disjoint sets, disjoint and Independent set (graph theo ...
where there is an edge between a man and a woman if they are compatible. The ultimate goal of the agency is to create as many compatible couples as possible, i.e., find a maximum-cardinality matching in this graph. Towards this goal, the agency first chooses an edge in the graph, and suggests to the man and woman on both ends of the edge to meet. Now, the agency must take care to only choose a maximally matchable edge. This is because, if it chooses a non-maximally matchable edge, it may get stuck with an edge that cannot be completed to a maximum-cardinality matching.


Definition

Let ''G'' = (''V'',''E'') be a graph, where ''V'' are the vertices and ''E'' are the edges. A ''matching'' in ''G'' is a subset ''M'' of ''E'', such that each vertex in ''V'' is adjacent to at most a single edge in ''M''. A ''maximum matching'' is a matching of maximum cardinality. An edge ''e'' in ''E'' is called maximally matchable (or allowed) if there exists a maximum matching ''M'' that contains ''e''.


Algorithms for general graphs

Currently, the best known deterministic algorithm for general graphs runs in time O(VE) . There is a randomized algorithm for general graphs in time \tilde(V^) ..


Algorithms for bipartite graphs

* * In bipartite graphs, if a single maximum-cardinality matching is known, it is possible to find all maximally matchable edges in linear time - O(V+E). If a maximum matching is not known, it can be found by existing algorithms. In this case, the resulting overall runtime is O(V^E) for general bipartite graphs and O((V/\log V)^E) for dense bipartite graphs with E=\Theta(V^2).


Bipartite graphs with a perfect matching

The algorithm for finding maximally matchable edges is simpler when the graph admits a
perfect matching In graph theory, a perfect matching in a graph is a matching that covers every vertex of the graph. More formally, given a graph with edges and vertices , a perfect matching in is a subset of , such that every vertex in is adjacent to exact ...
. Let the bipartite graph be G=(X+Y, E), where X = (x_1,\ldots,x_n) and Y=(y_1,\ldots,y_n). Let the perfect matching be M = \. ''Theorem:'' an edge ''e'' is maximally matchable if-and-only-if ''e'' is included in some ''M-alternating cycle'' - a cycle that alternates between edges in ''M'' and edges not in ''M''. ''Proof'': * If ''e'' is in an alternating cycle, then either ''e'' is in ''M'', or - by inverting the cycle - we get a new perfect matching that contains ''e''. Hence, ''e'' is maximally matchable. * Conversely, if ''e'' is maximally matchable, then it is in some perfect matching ''N''. By taking the symmetric difference of M and N, we can construct an alternating cycle that contains ''e''. Now, consider a directed graph H=(Z, E), where Z = (z_1,\ldots,z_n) and there is an edge from z_i to z_j in ''H'' iff i\neq j and there is an edge between x_i and y_j in ''G'' (note that by assumption such edges are not in ''M''). Each ''M''-alternating cycle in ''G'' corresponds to a ''
directed cycle Direct may refer to: Mathematics * Directed set, in order theory * Direct limit of (pre), sheaves * Direct sum of modules, a construction in abstract algebra which combines several vector spaces Computing * Direct access (disambiguation), a ...
'' in ''H''. A directed edge belongs to a directed cycle iff both its endpoints belong to the same
strongly connected component In the mathematics, mathematical theory of directed graphs, a graph is said to be strongly connected if every vertex is reachability, reachable from every other vertex. The strongly connected components of a directed graph form a partition of a s ...
. There are algorithms for finding all strongly connected components in linear time. Therefore, the set of all maximally matchable edges can be found as follows: * Given the undirected bipartite graph G=(X+Y, E) and the perfect matching ''M'', mark every edge ''(x_i,y_i)'' in ''M'' as maximally matchable. * Construct the directed graph H=(Z, E) as above. * Find all strongly connected components in ''H''. * For each ''i'', ''j'' such that ''(z_i,z_j)'' are in the same component, mark the edge ''(x_i,y_j)'' as maximally matchable. * Mark all remaining edges as not maximally matchable.


Bipartite graphs without a perfect matching

Let the bipartite graph be G=(X+Y, E), where X = (x_1,\ldots,x_n) and Y=(y_1,\ldots,y_) and n\leq n'. Let the given maximum matching be M = \, where t \leq n \leq n'. The edges in ''E'' can be categorized into two classes: * Edges with both endpoints saturated by ''M''. We call such edges ''M-upper''. * Edges with exactly one endpoint saturated by ''M''. We call such edges ''M-lower''. * Note that there are no edges with both endpoints unsaturated by ''M'', since this would contradict the maximality of ''M''. ''Theorem:'' All M-lower edges are maximally matchable.{{Rp, sub.2.2 ''Proof'': suppose e = (x_i,y_j) where x_i is saturated and y_i is not. Then, removing e = (x_i,y_j) from M and adding e = (x_i,y_j) yields a new maximum-cardinality matching. Hence, it remains to find the maximally matchable edges among the ''M''-upper ones. Let ''H'' be the subgraph of ''G'' induced by the ''M''-saturated nodes. Note that ''M'' is a perfect matching in ''H''. Hence, using the algorithm of the previous subsection, it is possible to find all edges that are maximally matchable in ''H''. Tassa explains how to find the remaining maximally matchable edges, as well as how to dynamically update the set of maximally matchable edges when the graph changes.


References

Graph theory Matching (graph theory)