Solve an assignment problem online

Fill in the cost matrix of an assignment problem and click on 'Solve'. The optimal assignment will be determined and a step by step explanation of the hungarian algorithm will be given.

Fill in the cost matrix (random cost matrix):

Size: 3x3 4x4 5x5 6x6 7x7 8x8 9x9 10x10

Don't show the steps of the Hungarian algorithm
Maximize the total cost

This is the original cost matrix:

4126341056
2333691094
278142434
8253931959
5831761858

Subtract row minima

We subtract the row minimum from each row:

311624046(-10)
132359084(-10)
19061626(-8)
633474040(-19)
401358040(-18)

Subtract column minima

We subtract the column minimum from each column:

181618020
02353058
600160
503468014
271352014
(-13)(-6)(-26)

Cover all zeros with a minimum number of lines

There are 3 lines required to cover all zeros:

181618020
02353058  x
600160  x
503468014
271352014
x

Create additional zeros

The number of lines is smaller than 5. The smallest uncovered number is 13. We subtract this number from all uncovered elements and add it to all elements that are covered twice:

53507
023531358
600290
37215501
1403901

Cover all zeros with a minimum number of lines

There are 4 lines required to cover all zeros:

53507
023531358  x
600290  x
37215501
1403901  x
x

Create additional zeros

The number of lines is smaller than 5. The smallest uncovered number is 1. We subtract this number from all uncovered elements and add it to all elements that are covered twice:

42406
023531458
600300
36205400
1403911

Cover all zeros with a minimum number of lines

There are 5 lines required to cover all zeros:

42406  x
023531458  x
600300  x
36205400  x
1403911  x

The optimal assignment

Because there are 5 lines required, the zeros cover an optimal assignment:

42406
023531458
600300
36205400
1403911

This corresponds to the following optimal assignment in the original cost matrix:

4126341056
2333691094
278142434
8253931959
5831761858

The optimal value equals 137.