Assignment Problem: Unbalanced and Maximal Assignment Problems
Assignment Problem: Unbalanced and Maximal Assignment Problems
Assignment problem :
Unbalanced and maximal Assignment Problems
Example
A company has 4 machines on which to do 3 jobs. Each job can be assigned to one and only one
machine. The cost of each job on each machine is given in the following table
Machines
W X Y Z
A 18 24 28 32
Jobs
B 8 13 17 19
C 10 15 19 22
Solution
18 24 28 32
8 13 17 19
10 15 19 22
0 0 0 0
I Modified Matrix
II Modified Matrix
1
N < n i.e. 3 < 4
N=n
Zero assignment
Solution -I
Minimum cost = 18 + 13 + 19 = Rs 50
Solution -II
Minimum cost = 18 + 17 + 15 = Rs 50
2
19.2 Maximal Assignment Problem
Example
A company has 5 jobs to be done. The following matrix shows the return in terms of rupees on
assigning ith ( i = 1, 2, 3, 4, 5 ) machine to the jth job ( j = A, B, C, D, E ). Assign the five jobs to
the five machines so as to maximize the total expected profit.
Jobs
A B C D E
1 5 11 10 12 4
2 2 4 6 3 5
Machines
3 3 12 5 14 6
4 6 14 4 11 7
5 7 9 8 12 5
Solution
9 3 4 2 10
12 10 8 11 9
11 2 9 0 8
8 0 10 3 7
7 5 6 2 9
7 1 2 0 8
4 2 0 3 1
11 2 9 0 8
8 0 10 3 7
5 3 4 0 7
I Modified Matrix
II Modified Matrix
3
N < n i.e. 4 < 5
N=n
Zero assignment
Optimal assignment 1 C 2 E 3 D 4 B 5 A
Maximum profit = 10 + 5 + 14 + 14 + 7 = Rs. 50