Skip to content
Snippets Groups Projects
Commit 5ac2496d authored by Bruno Freitas Tissei's avatar Bruno Freitas Tissei
Browse files

Add bipartite matching

parent b41dac45
No related branches found
No related tags found
No related merge requests found
/**
* Bipartite Matching (simplified Ford-Fulkerson)
*
* Complexity (Time): O(n + m)
* Complexity (Space): O(n + m)
*/
vector<int> graph[MAX];
int cont[MAX], match[MAX];
// Find match for x
int dfs(int x) {
if (cont[x])
return 0;
cont[x] = 1;
for (auto i : graph[x])
if (match[i] == -1 || dfs(match[v])) {
match[i] = x;
return 1;
}
return 0;
}
// Return number of left elements in matching and fills match array with the
// match itself (match[right_i] = left_i)
int bipartite_matching(int n) {
int ans = 0;
memset(match, -1, sizeof match);
for (int i = 0; i < n; ++i) {
memset(cont, 0, sizeof cont);
ans += dfs(i);
}
return ans;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment