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:

11145544
19668647
78635224
64136675

Subtract row minima

We subtract the row minimum from each row:

034433(-11)
0476728(-19)
5439280(-24)
5105362(-13)

Subtract column minima

We subtract the column minimum from each column:

031633
0473928
543900
5102562
(-28)

Cover all zeros with a minimum number of lines

There are 3 lines required to cover all zeros:

031633
0473928
543900  x
5102562  x
x

Create additional zeros

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

001330
0443625
573900
5402562

Cover all zeros with a minimum number of lines

There are 3 lines required to cover all zeros:

001330
0443625
573900  x
5402562
xx

Create additional zeros

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

00017
0442312
705200
5401249

Cover all zeros with a minimum number of lines

There are 4 lines required to cover all zeros:

00017  x
0442312  x
705200  x
5401249  x

The optimal assignment

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

00017
0442312
705200
5401249

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

11145544
19668647
78635224
64136675

The optimal value equals 111.