- Five workers, A, B, C, D and E, are available to complete four tasks, P, Q, R and S.
Each task must be assigned to exactly one worker and each worker can do at most one task.
Worker B cannot be assigned to task R.
The amount, in pounds, that each worker will earn if they are assigned to each task is shown in the table below.
| \cline { 2 - 5 }
\multicolumn{1}{c|}{} | \(\mathbf { P }\) | \(\mathbf { Q }\) | \(\mathbf { R }\) | \(\mathbf { S }\) |
| \(\mathbf { A }\) | 55 | 56 | 58 | 57 |
| \(\mathbf { B }\) | 60 | 61 | - | 64 |
| \(\mathbf { C }\) | 59 | 60 | 62 | 63 |
| \(\mathbf { D }\) | 64 | 66 | 71 | 69 |
| \(\mathbf { E }\) | 65 | 68 | 72 | 66 |
The Hungarian algorithm is to be used to find the maximum total amount that can be earned by the five workers.
- Explain how the table should be modified to allow the Hungarian algorithm to be used, giving reasons for your answer.
- Reducing rows first, use the Hungarian algorithm to obtain the maximum possible total earnings. You should explain how any initial row and column reductions were made and how you determined if the table was optimal at each stage.