How to Use the Hungarian Algorithm

Опубликовал Admin
18-10-2020, 05:00
128
0
The Hungarian algorithm allows a "minimum matching" to be found. This can be used in instances where there are multiple quotes for a group of activities and each activity must be done by a different person, to find the minimum cost to complete all of the activities.

Steps

  1. Arrange your information in a matrix with the "people" on the left and the "activity" along the top, with the "cost" for each pair in the middle.
  2. Ensure that the matrix is square by the addition of dummy rows/columns if necessary. Conventionally, each element in the dummy row/column is the same as the largest number in the matrix.
  3. Reduce the rows by subtracting the minimum value of each row from that row.
  4. If there are columns without a zero, reduce the columns by subtracting the minimum value of each column from that column.
  5. Cover the zero elements with the minimum number of lines it is possible to cover them with. (If the number of lines is equal to the number of rows then go to step 9)
  6. Add the minimum uncovered element to every covered element. If an element is covered twice, add the minimum element to it twice.
  7. Subtract the minimum element from every element in the matrix.
  8. Cover the zero elements again. If the number of lines covering the zero elements is not equal to the number of rows, return to step 6.
  9. Select a matching by choosing a set of zeros so that each row or column has only one selected.
  10. Apply the matching to the original matrix, disregarding dummy rows. This shows who should do which activity, and adding the costs will give the total minimum cost.

Tips

  • If you wish to find a maximum matching rather than a minimum, multiply each number by -1 in step 1, then follow the steps as written.
  • A key insight here is that adding the same number to all entries in one row or column of the matrix produces a new matrix with the same optimal solution. This is what allows us to get away with the reduction of the matrix in step 6.

Things You'll Need

  • Paper
  • Pen/pencil
Теги:
Information
Users of Guests are not allowed to comment this publication.