vote up 3 vote down star
4

I've stumbled on this algorithm recently and am having difficulty explaining it to myself. The algorithm solves the assignment problem in O(n4) (and apparently can be improved to O(n3)) but I can't see why.

Intuitively I can see that the algorithm would tend to find good to optimal solutions but I can't see a proof! All the proofs I have seen so far contain notation I am unfamiliar with. My question is: can anyone explain it rigorously but simply?

I understand already that the problem can be transferred to a matrix of values where exactly one value in each row and each column must be selected. The minimum value possible (from the selected elements) and the selection that produces that is what the algorithm computes. Obviously finding the selection also finds the minimum.


The part I'm struggling on, notation-wise, is here. The third paragraph down in the Settings section which begins "Let us call a function"...

flag

You're unlikely to get any help with this unless you show evidence of having done some work yourself - perhaps begin by posting your understanding of the algorithm/proof and indicating at which point your understanding breaks down. – Blair Conrad Mar 16 at 13:32
I thought the same thing... The problem is with the initial definitions though since the notation used is not known to me. I do hate to look lazy but that isn't the case here I can assure! – PythonPower Mar 16 at 13:36
Also, I've removed the homework tag since it isn't. I'm just interested in it! – PythonPower Mar 16 at 13:39
Can you paste the examples of notation that you don't understand please? – Grzenio Mar 16 at 13:40
Done; sorry for not adding it earlier. – PythonPower Mar 16 at 13:47

4 Answers

vote up 4 vote down check

The Wikipedia page you linked to has steps on how to do this algorithm by hand on a matrix. The python implementation also uses matrices. Sometimes the only way to understand an algorithm is to step through it by hand or in the interactive console.

link|flag
I have stepped through it but that isn't the same as proof. I can kind of see why, but it's not solid enough for me to be happy with it. – PythonPower Mar 16 at 13:46
Just to say thanks to everyone. I get it now! :) – PythonPower Apr 16 at 23:12
vote up 1 vote down

That's saying y of the S and T values is a potential answer if y at i and y at j are together less than the cost calculated for that position so far (finding lowest potential answer), for every position in S and T.

This is a dynamic programming problem, if I recall correctly. A perfect matching would be when the guy whose cheapest rate happens to be what he is picked to do.

link|flag
I can't see a dynamic programming method, but that I would be even more interested in! :D – PythonPower Mar 16 at 14:06
vote up 1 vote down

The function is mapping each vertex in the graph, which is the union of S and T which is what that U-shaped symbol means, into the rational number system which is what that Q represents by that inequality for a given pair of vertices. What part of the notation there doesn't make sense still?

link|flag
So every edge is given a quotient value...? – PythonPower Mar 16 at 14:03
No, there is no division involved, unless you mean a different form of quotient. Every edge was already given a value which is c(i,j) for the edge from vertex i to vertex j. The function being defined is y. – JB King Mar 16 at 14:36
vote up 1 vote down

The potential function y assigns a number to every vertex in your complete bipartite graph in such a way, that the sum of potentials of any vertex from S (the set of all people) and any vertex from T (the set of all jobs) is smaller than the value of the edge connecting these vertices (so smaller than the cost of the person doing the job). A function that assigns 0 to every vertex is a good example of a valid potential function.

The value of potential y is the sum of the potentials of all vertices (this is the definition).

It can be seen that the cost of each perfect matching is at least the value of each potential.

This is fairly obvious: in perfect matching you have to pick n edges that don't have common vertices. Cost of every edge is lower than the sum of the potential of its vertices (from definition of potential). When you sum the costs of all edges from your matching, it will be higher than the value of potential for the graph.

Now, the algorithm computes an potential and a matching, such that they cost/value is the same. Because the value of potential is the lower bound of the minimum cost for the problem, you get an optimal solution.

This proves the algorithm. Now you need to look at it and understand why and how it finds a perfect matching and a potential with equal cost/value.

link|flag

Your Answer

Get an OpenID
or

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