Lab 6.3 Maximum Bipartite Matching

Lab 6.3 Maximum Bipartite Matching

You cannot submit for this problem because the homework's deadline is due.

Description

Implement an algorithm that solves the Maximum Biparitite Matching.

Format

Submit a tar or zip file including a script named maxMatching.ml or maxMatching.py.
The input graph is an unweighted, undirected bipartite graph.

Input

First line is the number of vertices n.
Second line is the numer of edges m.
Following lines are the edges.

Output

The number of maximum matching.

Sample 1

Input

10
12
0 7
0 8
0 9
1 6
1 9
2 5
2 6
2 9
3 6
3 9
4 5
4 6
10 12

Output

4

Lab 6

Not Claimed
Status
Finished
Problems
3
Open Since
2021-11-20 00:00
DDL
2021-12-09 23:59
Extension
72.0 hour(s)