tom's blog

By tom, 9 years ago, In English

I'm reading following tutorial: http://community.topcoder.com/tc?module=Static&d1=tutorials&d2=hungarianAlgorithm

Description of O(n4) algorithm doesn't seem to be clear for me. Why do we need add to edges (v, w) where ? Why n2 iterations is enough, since we add weight to 0-edges?

  • Vote: I like it
  • 0
  • Vote: I do not like it

»
9 years ago, # |
Rev. 3   Vote: I like it +6 Vote: I do not like it

It's pretty simple actually,

Consider you have the following matrix

  • 3 0 2 5 0
  • 0 3 2 0 4
  • 2 4 2 4 5
  • 5 0 0 4 0
  • 2 4 2 5 0

As i'm sure you know this represents a bipartite graph of 5 + 5 = 10 nodes and 5*5 = 25 edges Next, find minimum vertex cover (i.e. min number of horizontal OR vertical lines such that we can cover all the zeros of the matrix (some elements might get covered twice)

  • 3 0 2 5 0
  • 0 3 2 0 4
  • 2 4 2 4 5
  • 5 0 0 4 0
  • 2 4 2 5 0

Min vertex cover is 4. We need it to be 5 however so that we have a complete matching with edges only zero = minimum complete matching

We have to make one of the non-zero edges zero so that we can progress further. How do we do that? Recall that only transformations that are allowed are to add/subtract from a row/column so that the original matrix has the same solution as the transformed matrix

How do we subtract/add only from rows/columns so that our transformed matrix will have one extra zero edge? Here's the trick: we find the minimum edge not equal to zero (i.e. in our case a[1][3] = 2) and we subtract this value(i.e. 2) from all rows(i.e. left vertices) not in our minimum cover (in our example, rows in min cover are 2 and 4 => so rows not in min cover are 1,3,5)

So

  • 3 0 2 5 0
  • 0 3 2 0 4
  • 2 4 2 4 5
  • 5 0 0 4 0
  • 2 4 2 5 0

becomes:

  • 1 -2 0 3 -2
  • 0 3 2 0 4
  • 0 2 0 2 3
  • 5 0 0 4 0
  • 0 2 0 3 -2

Here's the problem: we created negative edges from our zero edges! So solve this, we simply add 2 (i.e. our minimum which we found earlier) to all the columns in our vertex cover (in our example 2 and 5)

So

  • 1 -2 0 3 -2
  • 0 3 2 0 4
  • 0 2 0 2 3
  • 5 0 0 4 0
  • 0 2 0 3 -2

becomes

  • 1 0 0 3 0
  • 0 5 2 0 6
  • 0 4 0 2 5
  • 5 2 0 4 2
  • 0 4 0 3 0

Now we can see that all our edges not having a vertex in the min vertex cover decreased by 2, all elements having only one vertex in the min vertex cover stayed the same, and, all the edges having both vertexes in min vertex cover increased by 2, which is equivalent to the formulas written on TopCoder.

Hope you understand now. Please tell me if something not clear. Cheers

  • »
    »
    9 years ago, # ^ |
    Rev. 7   Vote: I like it 0 Vote: I do not like it

    I can't understand this excerpt: Min vertex cover is 4. We need it to be 5 however so that we have a complete matching with edges only zero = minimum complete matching I think mvc is 3 (3 horizontal lines)

    • »
      »
      »
      9 years ago, # ^ |
        Vote: I like it 0 Vote: I do not like it

      You are right, my bad. I've modified a[5][5] from 6 to 0 and now it should be 4.

      • »
        »
        »
        »
        9 years ago, # ^ |
          Vote: I like it 0 Vote: I do not like it

        Thanks, I get it now .

»
9 years ago, # |
  Vote: I like it 0 Vote: I do not like it

If you can read in Russian, or may be google does it well from Russian to Polish, I would recommend to try e-maxx article. It describes Hungarian algorithm pretty well via duality of finding minimal permutation and maximal potentials. Also it has one of the shortest implementations (made by KOTEHOK) for O(n3) hungarian I've ever seen (also pretty fast, although I can make it faster).

  • »
    »
    3 years ago, # ^ |
      Vote: I like it 0 Vote: I do not like it

    Really helpful link, thank you. I used Google translate from Russian to English, and it works pretty decently — I am able to follow the article.

»
7 years ago, # |
  Vote: I like it +1 Vote: I do not like it

extremeplay has explained the process,yes,but why does the relation presented there works?I dont' get it.Proof or link to something which explains it on level above "My dad told me this works".I appreciate help.