Madry's algorithm (Bipartite Graph MCM Maximum Cardinality Matching)
Revision as of 11:14, 15 February 2023 by Admin (talk | contribs) (Created page with "== Time Complexity == $O(E^{10/7}*polylog(V)$) == Space Complexity == $O(E + V)$ words (Derived: Uses an augmented graph (copy of the original graph plus an additional node with edges between it and all other nodes)) == Description == Based on electric flows == Approximate? == Exact == Randomized? == No, deterministic == Model of Computation == Word RAM == Year == 2013 == Reference == https://arxiv.org/abs/1307.2205")
Time Complexity
$O(E^{10/7}*polylog(V)$)
Space Complexity
$O(E + V)$ words
(Derived: Uses an augmented graph (copy of the original graph plus an additional node with edges between it and all other nodes))
Description
Based on electric flows
Approximate?
Exact
Randomized?
No, deterministic
Model of Computation
Word RAM
Year
2013