1

1

Suppose I had a complete bipartite graph with edges each given some numerical "cost" value. Is there a way to select a subset of those edges such that each vertex on each side of the graph is mapped to each vertex on the other (one to one) and the total "costs" is maximized (or minimized)?

Has anyone ever formulated something equivalent to this?

flag
1 
Do you mean each vertex on on each side is mapped to a vertex on the other? (not each. The way you wrote it it looks like you're searching for a bi-clique). If that's the case, you should look at 'maximum weighted matching' which has a polynomial time algorithm. – Or Zuk May 14 2011 at 11:56
Yes, I did mean "a" vertex on the other side, sorry for not being clear enough. And I shall look at that matching you've suggested, thanks very much! – Glenn Habibi May 14 2011 at 12:25

2 Answers

1

You are looking for the max-flow-min-cut theorem: http://en.wikipedia.org/wiki/Max-flow_min-cut_theorem

link|flag
1

Looks like you are looking for maximum weighted bipartite matching - if so, see Wikipedia for initial pointers.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.