SlideShare uma empresa Scribd logo
1 de 41
Dr Bhupender Som
Assignment Problem
OVERVIEW
3
Jagan Institute of Management Studies (JIMS) www.JimsIndia.org
This is a special type of LPP in which the objective function is to find the optimum allocation of a
number of tasks (jobs) to an equal number of facilities (persons). Here we make the assumption
that each person can perform each job but with varying degree of efficiency. For example, a
departmental head may have 4 persons available for assignment and 4 jobs to fill. Then his
interest is to find the best assignment which will be in the best interest of the department.
General form of an Assignment Problem:
The assignment problem can be stated in the form of n × n, matrix [cij] called the cost of
effectiveness matrix, where cij is the cost of assigning ith person (facility) to jth job.
4
Jagan Institute of Management Studies (JIMS) www.JimsIndia.org
Effectiveness Matrix:
Jobs
Persons
1 2 3 .......... j .......... n
1 c11 c12 c13 .......... cij .......... cin
2 c21 c22 c23 .......... c2j .......... c2n
3 c31 c32 c33 .......... c3j .......... c3n
....... ....... ........ ......... ........ ......... ....... ........
i ci1 ci2 ci3 ........ cij ........ cin
...... ........ ....... ......... .......... ....... ......... ........
n cn1 cn2 cn3 ......... cnj ........ cnn
5
Jagan Institute of Management Studies (JIMS) www.JimsIndia.org
Mathematical Formulation :
A person can be assigned to n jobs in n! Possible ways. One method may be to find all possible n!
assignments and evaluate total cost in all cases. Then the assignment with minimum cost (as
required) will give the optimal assignment. But this method is extremely laborious. For example if
n = 8, then the number of such possible assignments is 8! = 40320. The evaluation cost for all these
allocation will take huge time. Therefore there is a need to develop an easy computational
technique for the solution of assignment problem.
Mathematical formulation of an assignment problem can be stated as follows:
 

n
i
n
j
ijij xcZ
1 1
Where xij =
{
1, if ith person is assigned to the jth job.
0, if ith person is not assigned the jth job.
Subject to the conditions:


n
i
ij njx
1
.,.......,2,1,1
Which means that only one job is done by the ith person, i=1,2,......,n.
6
Jagan Institute of Management Studies (JIMS) www.JimsIndia.org
Which means that only one person should be assigned the jth job, j=1,2,......,n.
Reduction Theorem:
If in an assignment problem, a constant is added or subtracted to every element of a row (or
column) of the cost matrix [cij], then an assignment which minimizes the total cost for one
matrix, also minimizes the total cost for the other matrix.


n
j
ij nix
1
.,.......,2,1,1
7
Jagan Institute of Management Studies (JIMS) www.JimsIndia.org
(Hungarian Method or Reduced Matrix Method)
1. Solve the following minimal assignment problem:
Solution of an Assignment Problem:
Man
Job 1 2 3 4
1 12 30 21 15
2 18 33 9 31
3 44 25 24 21
4 23 30 28 14
8
Jagan Institute of Management Studies (JIMS) www.JimsIndia.org
Step 1: Select the minimum of each row and subtract from all the elements of
corresponding row.
0
9
23
9
18 9
4
16 14
3
18 0
0
22
18
3
0
9
Jagan Institute of Management Studies (JIMS) www.JimsIndia.org
Step 2: Select the minimum of each column and subtract from all the elements of
corresponding column.
0
9
23
9
14 9
0
12 14
3
0
0
22
3
0
20
10
Jagan Institute of Management Studies (JIMS) www.JimsIndia.org
Step 3: Starting with row 1 of the matrix obtained in step 2. Examine rows successively
until a row with exactly one zero element is found. Mark () at this zero, as an
assignment is made there. Mark (×) at all the other zeros in the column (in which we
mark ) to show that they can not be used to make other assignments. Proceed in this
way until the last row is examined.
9
0
9
23
12 14
20
0 3
9
22
3
0
0
14
0
0
×
11
Jagan Institute of Management Studies (JIMS) www.JimsIndia.org
Step 4: After examining all the rows completely. Proceed similarly examining the
columns. Examine column starting with column 1 until a column containing exactly one
unmarked 0 is found. Mark () at this zero. Mark (×) at all the other zeros in the rows (in
which we mark ). Proceed in this way until the last column is examined.
9
0
9
23
12 14
20
0 3
9
22
3
0
0
14
0
0
×
12
Jagan Institute of Management Studies (JIMS) www.JimsIndia.org
Step 5. Continue the these operations until successively until we reach to any of the two
situations:
a. All the zero’s are marked  or ×.
b. The remaining unmarked zeros lies at-least two in a
row or a column.
In case (A) we have the maximal assignment (assignment as much as we can) and in
case (b) still we have some zeros to be treated for which we use the trail and error
method to avoid the use of highly complicated algorithm.
Now there are two possibilities:
a. If it has an assignment in each row and each column (i.e. The total
number of marked  zero is exactly equal to n), then the complete optimal solution is
obtained.
13
Jagan Institute of Management Studies (JIMS) www.JimsIndia.org
Since every row and every column has one assignment, so we have the complete
optimal zero assignment.
JOB 1 2 3 4
MAN 1 3 2 4
Which is the optimal assignment.
b. If it does not contain assignment in every row and every column (i.e. The total
number of marked  zeros is less than n), then one has to modify the cost
(effectiveness) matrix by adding or subtracting to create some more zeros to it.
14
Jagan Institute of Management Studies (JIMS) www.JimsIndia.org
Man
Job
1 2 3 4
1 2 3 4 5
2 4 5 6 7
3 7 8 9 8
4 3 5 8 4
2. A department head has 4 subordinates, and 4 tasks to be performed. The
subordinates differ in efficiency and the tasks differ in their intrinsic difficulty. His
estimate of the times each man would take to perform each task is given in the
effectiveness matrix below. How should the tasks to be allocated, one to a man, so as
to minimize the total man hour?
15
Jagan Institute of Management Studies (JIMS) www.JimsIndia.org
0 0 0 2
0 0 0 2
0 0 0 0
0 1 3 0
×
×
×
×
×
×
×
×



16
Jagan Institute of Management Studies (JIMS) www.JimsIndia.org
Since every row and every column has one assignment, so we have the complete
optimal zero assignment.
JOB 1 2 3 4
MAN 2 3 4 1
Which is the optimal assignment.
17
Jagan Institute of Management Studies (JIMS) www.JimsIndia.org
Man
Job
1 2 3 4 5 6
A 9 22 58 11 19 27
B 43 78 72 50 63 48
C 41 28 91 37 45 33
D 74 42 27 49 39 32
E 36 11 57 22 25 18
F 3 56 53 31 17 28
2. Solve the following assignment problem?
18
Jagan Institute of Management Studies (JIMS) www.JimsIndia.org
0 13 49 0 0 13
0 35 29 5 10 0
13 0 63 7 7 0
47 15 0 20 2 0
25 0 46 9 4 2
0 53 50 26 4 20
×
×
×
×
×
×
19
Jagan Institute of Management Studies (JIMS) www.JimsIndia.org
0 13 49 0 0 13
0 35 29 5 10 0
13 0 63 7 7 0
47 15 0 20 2 0
25 0 46 9 4 2
0 53 50 26 4 20
×
×
×
×
×
×
 1
1. We mark (  ) row 3 in which there is no assignment.
20
Jagan Institute of Management Studies (JIMS) www.JimsIndia.org
0 13 49 0 0 13
0 35 29 5 10 0
13 0 63 7 7 0
47 15 0 20 2 0
25 0 46 9 4 2
0 53 50 26 4 20
×
×
×
×
×
×
 1
2. We mark (  ) columns 2 and 6 in which have zeros in marked rows.
 2  3
21
Jagan Institute of Management Studies (JIMS) www.JimsIndia.org
0 13 49 0 0 13
0 35 29 5 10 0
13 0 63 7 7 0
47 15 0 20 2 0
25 0 46 9 4 2
0 53 50 26 4 20
×
×
×
×
×
×
 1
2. We mark (  ) columns 2 and 6 in which have zeros in marked rows.
 2  3
 4
 5
22
Jagan Institute of Management Studies (JIMS) www.JimsIndia.org
0 13 49 0 0 13
0 35 29 5 10 0
13 0 63 7 7 0
47 15 0 20 2 0
25 0 46 9 4 2
0 53 50 26 4 20
×
×
×
×
×
×
 1
2. We mark (  ) columns 2 and 6 in which have zeros in marked rows.
 2  3
 4
 5
 6
 7
23
Jagan Institute of Management Studies (JIMS) www.JimsIndia.org
0 13 49 0 0 13
0 35 29 5 10 0
13 0 63 7 7 0
47 15 0 20 2 0
25 0 46 9 4 2
0 53 50 26 4 20
×
×
×
×
×
×
 1
5. Now we draw lines through all marked columns 1, 2, 6. Then we draw lines through unmarked row 1 and 4
having zeros through which there is no line. In this way we get the minimum number of lines covering all zeros.
 2  3
 4
 5
 6  7
L3L2L1
L5
L4
24
Jagan Institute of Management Studies (JIMS) www.JimsIndia.org
4 17 49 0 0 17
0 35 25 1 6 0
13 0 59 3 3 0
51 19 0 20 2 4
25 0 42 5 0 2
0 53 46 22 0 20
6. Now select minimum of the left out elements. Subtract it from the left out elements,
add at the intersection of lines. While the elements lying on the lines will remain as
they were.
×
×
×
×
×
25
Jagan Institute of Management Studies (JIMS) www.JimsIndia.org
Solution to the assignment problem is given by:
Job a b c d e f
Man 4 1 6 3 2 5
26
Jagan Institute of Management Studies (JIMS) www.JimsIndia.org
Man
Job 1 2 3 4 5
A 1 3 2 3 6
B 2 4 3 1 5
C 5 6 3 4 6
D 3 1 4 2 2
E 1 5 6 5 4
2. Solve the following assignment problem?
27
Jagan Institute of Management Studies (JIMS) www.JimsIndia.org
Case : An air – line that operates seven days a week has time table shown below.
Cruse must have a minimum layover of 5 hours between flights. Obtain the pairing of
flights that minimizes layover time away from home. For any given pairing the crew will
be based at the city that results in the smaller layover.
Delhi - Jaipur Jaipur - Delhi
Fligth No Departure Arrival Flight No Departure Arrival
1 7.00 am 8.00 am 101 8.00 am 9.15 am
2 8.00 am 9.00 am 102 8.30 am 9.45 am
3 1.30 pm 2.30 pm 103 12.00 noon 1.15 pm
4 6.30 pm 7.30 pm 104 5.30 pm 6.45 pm
For each pair also mention the town where the crew should be based.
28
Jagan Institute of Management Studies (JIMS) www.JimsIndia.org
Layover time in hours when crew based at delhi.
Layover time in hours when crew based at Jaipur.
Flight 101 102 103 104
1 24 24.5 28 9.5
2 23 23.5 27 8.5
3 17.5 18 21.5 27
4 12.5 13 16.5 22
Flight 101 102 103 104
1 21.75 21.25 17.75 12.25
2 22.75 22.25 18.75 13.25
3 28.25 27.75 24.25 18.75
4 9.25 8.75 5.25 23.75
Solution:
29
Jagan Institute of Management Studies (JIMS) www.JimsIndia.org
To avoid the fractions we consider either the layover times in terms of quarter hour as one
unit of time or the layover times for 4 weeks. Thus multiplying the matrices by 4, the
modified matrices are as follows:
And
Flight 101 102 103 104
1 96 98 112 38
2 92 94 108 34
3 70 72 86 108
4 50 52 66 88
Flight 101 102 103 104
1 87 85 71 49
2 91 89 75 53
3 113 111 97 75
4 37 35 21 95
30
Jagan Institute of Management Studies (JIMS) www.JimsIndia.org
Now we combine the two tables, choosing that base which gives a lesser layover time for
each pairing. The layover times marked with ( * ) denote the crew based at Jaipur,
otherwise the crew is based at Delhi. Thus we get the following table.
Table 6. (Minimum Layover times table)
87* 85* 71* 38
91* 89* 75* 34
70 72 86 75*
37* 35* 21* 88
31
Jagan Institute of Management Studies (JIMS) www.JimsIndia.org
Subtracting the smallest element of each row from every element of the corresponding row and
then subtracting the smallest element of each column from every element of the corresponding
column, we get the following matrix.
Table 7.
49* 45* 33* 0
57* 53* 41* 0
0 0 16 5*
16* 12* 0* 67
 1
 3

2
×
× L1
L2
32
Jagan Institute of Management Studies (JIMS) www.JimsIndia.org
Subtracting the smallest element of each row from every element of the corresponding row and
then subtracting the smallest element of each column from every element of the corresponding
column, we get the following matrix.
Table 7.
16* 12* 0* 0
24* 20* 8* 0
0 0 16 38*
16* 12* 0* 100
 4
 3

2
×
× L1
L2
×

3
L3
33
Jagan Institute of Management Studies (JIMS) www.JimsIndia.org
Applying the modification operations and making assignments again we get the following
table.
Table 9.
4* 0* 0* 0
12* 8* 8* 0
0 0 28 50*
4* 0* 0* 100
34
Jagan Institute of Management Studies (JIMS) www.JimsIndia.org
The optimal solution to the problem is given by following
1 102 (Crew at jaipur)
2 104 (crew at Jaipur)
3 101 (crew at Jaipur)
4 103 (crew at Delhi)
The minimum layover time is 210 hours for 4 weeks i.e. 52 hours and 30 minutes per
week.
35
Jagan Institute of Management Studies (JIMS) www.JimsIndia.org
Case : A small air – plane company operating 7 days a week, serves three cities A, B and C
according to the schedule shown in the following table. The layover cost per shop is roughly
proportional to the square of the layover time. How should planes be assigned the flights so as to
minimize the total layover cost?
Flight No. From Departure To Arrival
A1B A 09.00 AM B Noon
A2B A 10.00 AM B 01.00 PM
A3B A 03.00 PM B 06.00 PM
A4C A 08.00 PM C Midnight
A5C A 10.00 PM C 02.00 AM
B1A B 04.00 AM A 07.00 AM
B2A B 11.00 AM A 02.00 PM
B3A B 03.00 PM A 06.00 PM
C1A C 07.00 AM A 11.00 AM
C2A C 03.00 PM A 07.00 PM
36
Jagan Institute of Management Studies (JIMS) www.JimsIndia.org
As assignment problems is called unbalanced assignment problem whenever the number of tasks
(jobs) are not equal to the number of facilities (persons). Thus, the cost of matrix of an assignment
problem is not the square matrix. For the solution of such problems we ass the dummy rows and
dummy columns to the given matrix to make it a square matrix. The costs in these dummy rows or
columns are taken to be 0. Now the problem reduce to the balanced assignment problem and can
be solved by assignment algorithm.
Maximization Problem :
Unbalanced Transportation Problem :
Sometimes the assignment problem deals with the maximization of the objective function i.e., the
problem may be to assign persons to the jobs in such a way that the expected profit is maximized.
Such maximization problem may be solved by converting it to minimization problem. This is done
converting the profit matrix to the cost (i.e. loss) matrix in either of the following two ways.
(i) Subtract each element of the given matrix (profit matrix) from the greatest element of
the matrix to get the equivalent cost (i.e. loss) matrix.
or
(ii) Place minus sign before each element of the profit matrix to get the equivalent cost
matrix.
37
Jagan Institute of Management Studies (JIMS) www.JimsIndia.org
Case: Alpha corporation has four plants each of which can manufacture any of the four products.
Production costs differ from plant to plant as do sales revenue. From the following data, obtain
which product each plant should produce to maximize profit.
Product
Plant
A B C D
1 50 68 49 62
2 60 70 51 74
3 55 67 53 70
4 58 65 54 69
Product
Plant
A B C D
1 49 60 45 61
2 55 63 45 69
3 52 62 49 68
4 55 64 48 66
Sales revenue (Rs 1000) Production cost (Rs 1000)
38
Jagan Institute of Management Studies (JIMS) www.JimsIndia.org
0 13 49 0 0 13
0 35 29 5 10 0
13 0 63 7 7 0
47 15 0 20 2 0
25 0 46 9 4 2
0 53 50 26 4 20
×
×
×
×
×
×
Jagan Institute of Management Studies
40
Jagan Institute of Management Studies (JIMS) www.JimsIndia.org
About JIMS
JIMS Rohini is one of the leading MBA
institutes of Delhi. We impart professional
education both at post graduate and
undergraduate levels in the fields of
management and information technology.
Our PGDM program is approved by the AICTE and is
accredited from NBA for excellence in quality education.
PGDM program has also been granted equivalence to
MBA degree by the AIU. We offer specialized PGDM
programs in International Business and Retail as well.
JIMS, Rohini, Sector 5 also offers technical programs viz BBA,
BCA & MCA affiliated from GGSIPU.
Established in 1993, JIMS completed its 20 years of
Excellence in 2013. We offer excellent academic
structure, industry interaction and job opportunities.
Address
3, Institutional Area, Sector-5,
Rohini
(Near Rajiv Gandhi Cancer
Research Institute), Delhi-110085.
Contact Details
Phone : 011-45184000/1/2
Mobile : +91-9871097501
Email : admissions@jimsindia.org
GET IN
TOUCH
Web Address
www.jimsindia.org
Facebook: https://www.facebook.com/JimsDelhi?sk=wall
Twitter: https://twitter.com/JIMSsec5Rohini
G+: https://plus.google.com/+jimsrohini/posts?hl=en
YouTube: https://www.youtube.com/user/jimsquery/
LinkedIn:
https://www.linkedin.com/company/jagan-
institute-of-management-studies-jims-
Slideshare: http://www.slideshare.net/JimsIndia
Pinterest: https://www.pinterest.com/jimsrohini/

Mais conteúdo relacionado

Mais procurados

Assignment problem
Assignment problemAssignment problem
Assignment problem
Abu Bashar
 
Transportation Problem in Operational Research
Transportation Problem in Operational ResearchTransportation Problem in Operational Research
Transportation Problem in Operational Research
Neha Sharma
 
Simplex method concept,
Simplex method concept,Simplex method concept,
Simplex method concept,
Dronak Sahu
 
Dominance method
Dominance methodDominance method
Dominance method
pooja rani
 

Mais procurados (20)

Operations Research - Meaning, Origin & Characteristics
Operations Research -  Meaning, Origin & CharacteristicsOperations Research -  Meaning, Origin & Characteristics
Operations Research - Meaning, Origin & Characteristics
 
Assignment problem
Assignment problemAssignment problem
Assignment problem
 
Hungarian Method
Hungarian MethodHungarian Method
Hungarian Method
 
Transportation and Assignment
Transportation and AssignmentTransportation and Assignment
Transportation and Assignment
 
Operation research and its application
Operation research and its applicationOperation research and its application
Operation research and its application
 
Branch and Bound technique to solve Integer Linear Programming
Branch and Bound technique to solve Integer Linear ProgrammingBranch and Bound technique to solve Integer Linear Programming
Branch and Bound technique to solve Integer Linear Programming
 
Game Theory Operation Research
Game Theory Operation ResearchGame Theory Operation Research
Game Theory Operation Research
 
Dynamic Programming
Dynamic ProgrammingDynamic Programming
Dynamic Programming
 
Assignment problems
Assignment problemsAssignment problems
Assignment problems
 
Modified distribution method (modi method)
Modified distribution method (modi method)Modified distribution method (modi method)
Modified distribution method (modi method)
 
Vam
VamVam
Vam
 
Transportation Problem in Operational Research
Transportation Problem in Operational ResearchTransportation Problem in Operational Research
Transportation Problem in Operational Research
 
MODI Method (Operations Research)
MODI Method (Operations Research) MODI Method (Operations Research)
MODI Method (Operations Research)
 
Transportation model and assignment model
Transportation model and assignment modelTransportation model and assignment model
Transportation model and assignment model
 
unbalanced transportation problem
unbalanced transportation problemunbalanced transportation problem
unbalanced transportation problem
 
Operation research (definition, phases)
Operation research (definition, phases)Operation research (definition, phases)
Operation research (definition, phases)
 
Transportation Problem
Transportation ProblemTransportation Problem
Transportation Problem
 
Simplex method concept,
Simplex method concept,Simplex method concept,
Simplex method concept,
 
Algorithm for Hungarian Method of Assignment
Algorithm for Hungarian Method of AssignmentAlgorithm for Hungarian Method of Assignment
Algorithm for Hungarian Method of Assignment
 
Dominance method
Dominance methodDominance method
Dominance method
 

Destaque

Assgnment=hungarian method
Assgnment=hungarian methodAssgnment=hungarian method
Assgnment=hungarian method
Joseph Konnully
 
Operational research on Assignment ppt
Operational research on Assignment pptOperational research on Assignment ppt
Operational research on Assignment ppt
Nirali Solanki
 
Harvard Transportation Case Study: Developing a Regional Bike Sharing Program
Harvard Transportation Case Study: Developing a Regional Bike Sharing ProgramHarvard Transportation Case Study: Developing a Regional Bike Sharing Program
Harvard Transportation Case Study: Developing a Regional Bike Sharing Program
Harvard Campus Services
 
Qm assignment problem slides
Qm assignment problem slidesQm assignment problem slides
Qm assignment problem slides
Amit Pai
 

Destaque (17)

assignment problem
assignment problemassignment problem
assignment problem
 
Assignment problem ppt
Assignment problem ppt Assignment problem ppt
Assignment problem ppt
 
Lesson 33: The Assignment Problem
Lesson 33: The Assignment  ProblemLesson 33: The Assignment  Problem
Lesson 33: The Assignment Problem
 
Assgnment=hungarian method
Assgnment=hungarian methodAssgnment=hungarian method
Assgnment=hungarian method
 
Ap for b.tech. (mechanical) Assignment Problem
Ap for b.tech. (mechanical) Assignment Problem Ap for b.tech. (mechanical) Assignment Problem
Ap for b.tech. (mechanical) Assignment Problem
 
Assignment problem
Assignment problemAssignment problem
Assignment problem
 
ITFT - Assignment problem
ITFT - Assignment problemITFT - Assignment problem
ITFT - Assignment problem
 
Hungarian algorithm
Hungarian algorithmHungarian algorithm
Hungarian algorithm
 
operation research
operation researchoperation research
operation research
 
Operational research on Assignment ppt
Operational research on Assignment pptOperational research on Assignment ppt
Operational research on Assignment ppt
 
Harvard Transportation Case Study: Developing a Regional Bike Sharing Program
Harvard Transportation Case Study: Developing a Regional Bike Sharing ProgramHarvard Transportation Case Study: Developing a Regional Bike Sharing Program
Harvard Transportation Case Study: Developing a Regional Bike Sharing Program
 
2014 IEEE JAVA PARALLEL DISTRIBUTED PROJECT The client assignment problem for...
2014 IEEE JAVA PARALLEL DISTRIBUTED PROJECT The client assignment problem for...2014 IEEE JAVA PARALLEL DISTRIBUTED PROJECT The client assignment problem for...
2014 IEEE JAVA PARALLEL DISTRIBUTED PROJECT The client assignment problem for...
 
Assignment problem
Assignment problemAssignment problem
Assignment problem
 
Qm assignment problem slides
Qm assignment problem slidesQm assignment problem slides
Qm assignment problem slides
 
Don McClain | Interior design Basic information
Don McClain | Interior design Basic informationDon McClain | Interior design Basic information
Don McClain | Interior design Basic information
 
Quantitative Analysis For Decision Making
Quantitative Analysis For Decision MakingQuantitative Analysis For Decision Making
Quantitative Analysis For Decision Making
 
Transportation model
Transportation modelTransportation model
Transportation model
 

Semelhante a Assignment Problem

qadm-ppt-150918102124-lva1-app6892.pdf
qadm-ppt-150918102124-lva1-app6892.pdfqadm-ppt-150918102124-lva1-app6892.pdf
qadm-ppt-150918102124-lva1-app6892.pdf
Hari31856
 
Answer SheetInstructions You must show your work to .docx
Answer SheetInstructions  You must show your work to .docxAnswer SheetInstructions  You must show your work to .docx
Answer SheetInstructions You must show your work to .docx
justine1simpson78276
 
CP1-Chp6-Matrices (2).pptx used for revision
CP1-Chp6-Matrices (2).pptx used for revisionCP1-Chp6-Matrices (2).pptx used for revision
CP1-Chp6-Matrices (2).pptx used for revision
rachaelgiwa11
 
Mohan_Sidharth_final_report_565_f14
Mohan_Sidharth_final_report_565_f14Mohan_Sidharth_final_report_565_f14
Mohan_Sidharth_final_report_565_f14
Sidharth Kumar
 

Semelhante a Assignment Problem (20)

qadm-ppt-150918102124-lva1-app6892.pdf
qadm-ppt-150918102124-lva1-app6892.pdfqadm-ppt-150918102124-lva1-app6892.pdf
qadm-ppt-150918102124-lva1-app6892.pdf
 
A study on solving Assignment Problem
A study on solving Assignment ProblemA study on solving Assignment Problem
A study on solving Assignment Problem
 
Matching problem
Matching problemMatching problem
Matching problem
 
A0280115(1)
A0280115(1)A0280115(1)
A0280115(1)
 
A Comparative Analysis Of Assignment Problem
A Comparative Analysis Of Assignment ProblemA Comparative Analysis Of Assignment Problem
A Comparative Analysis Of Assignment Problem
 
Answer SheetInstructions You must show your work to .docx
Answer SheetInstructions  You must show your work to .docxAnswer SheetInstructions  You must show your work to .docx
Answer SheetInstructions You must show your work to .docx
 
CP1-Chp6-Matrices (2).pptx used for revision
CP1-Chp6-Matrices (2).pptx used for revisionCP1-Chp6-Matrices (2).pptx used for revision
CP1-Chp6-Matrices (2).pptx used for revision
 
Unit-1 Basic Concept of Algorithm.pptx
Unit-1 Basic Concept of Algorithm.pptxUnit-1 Basic Concept of Algorithm.pptx
Unit-1 Basic Concept of Algorithm.pptx
 
P1-Chp13-Integration.pptx
P1-Chp13-Integration.pptxP1-Chp13-Integration.pptx
P1-Chp13-Integration.pptx
 
Unsteady MHD Flow Past A Semi-Infinite Vertical Plate With Heat Source/ Sink:...
Unsteady MHD Flow Past A Semi-Infinite Vertical Plate With Heat Source/ Sink:...Unsteady MHD Flow Past A Semi-Infinite Vertical Plate With Heat Source/ Sink:...
Unsteady MHD Flow Past A Semi-Infinite Vertical Plate With Heat Source/ Sink:...
 
Production & Operation Management Chapter33[1]
Production & Operation Management Chapter33[1]Production & Operation Management Chapter33[1]
Production & Operation Management Chapter33[1]
 
Daa unit 3
Daa unit 3Daa unit 3
Daa unit 3
 
Ds33717725
Ds33717725Ds33717725
Ds33717725
 
Ds33717725
Ds33717725Ds33717725
Ds33717725
 
D05511625
D05511625D05511625
D05511625
 
Mohan_Sidharth_final_report_565_f14
Mohan_Sidharth_final_report_565_f14Mohan_Sidharth_final_report_565_f14
Mohan_Sidharth_final_report_565_f14
 
IRJET- New Proposed Method for Solving Assignment Problem and Comparative Stu...
IRJET- New Proposed Method for Solving Assignment Problem and Comparative Stu...IRJET- New Proposed Method for Solving Assignment Problem and Comparative Stu...
IRJET- New Proposed Method for Solving Assignment Problem and Comparative Stu...
 
Linear programming manzoor nabi
Linear programming  manzoor nabiLinear programming  manzoor nabi
Linear programming manzoor nabi
 
Genetic Algorithm for Solving Balanced Transportation Problem
Genetic Algorithm for Solving Balanced  Transportation ProblemGenetic Algorithm for Solving Balanced  Transportation Problem
Genetic Algorithm for Solving Balanced Transportation Problem
 
MULTIPROCESSOR SCHEDULING AND PERFORMANCE EVALUATION USING ELITIST NON DOMINA...
MULTIPROCESSOR SCHEDULING AND PERFORMANCE EVALUATION USING ELITIST NON DOMINA...MULTIPROCESSOR SCHEDULING AND PERFORMANCE EVALUATION USING ELITIST NON DOMINA...
MULTIPROCESSOR SCHEDULING AND PERFORMANCE EVALUATION USING ELITIST NON DOMINA...
 

Mais de JIMS Rohini Sector 5

Case Study Inland Container Depot Supply Chain
Case Study Inland Container Depot Supply ChainCase Study Inland Container Depot Supply Chain
Case Study Inland Container Depot Supply Chain
JIMS Rohini Sector 5
 

Mais de JIMS Rohini Sector 5 (20)

Verve 2024 JIMS Rohini Annual Fest Delhi College Fest
Verve 2024 JIMS Rohini Annual Fest Delhi College FestVerve 2024 JIMS Rohini Annual Fest Delhi College Fest
Verve 2024 JIMS Rohini Annual Fest Delhi College Fest
 
Export Procedure of Rice from India to Russia
Export Procedure of Rice from India to RussiaExport Procedure of Rice from India to Russia
Export Procedure of Rice from India to Russia
 
Enhancing Multi-Refinery Supply Chain Efficiency
Enhancing Multi-Refinery Supply Chain EfficiencyEnhancing Multi-Refinery Supply Chain Efficiency
Enhancing Multi-Refinery Supply Chain Efficiency
 
Case Study Inland Container Depot Supply Chain
Case Study Inland Container Depot Supply ChainCase Study Inland Container Depot Supply Chain
Case Study Inland Container Depot Supply Chain
 
JIMS Rohini PGDM Newsletter | July 2023
JIMS Rohini PGDM Newsletter  | July 2023JIMS Rohini PGDM Newsletter  | July 2023
JIMS Rohini PGDM Newsletter | July 2023
 
JIMS Placement highlights batch 2021-23
JIMS Placement highlights  batch 2021-23JIMS Placement highlights  batch 2021-23
JIMS Placement highlights batch 2021-23
 
Annual Students Convention- Prastuti 2018
Annual Students Convention- Prastuti 2018Annual Students Convention- Prastuti 2018
Annual Students Convention- Prastuti 2018
 
IT FDP on computing technologies- A Panoramic View
IT FDP on computing technologies- A Panoramic ViewIT FDP on computing technologies- A Panoramic View
IT FDP on computing technologies- A Panoramic View
 
JIMS Rohini Alumni Magazine Pizzazz 2017
JIMS Rohini Alumni Magazine Pizzazz 2017JIMS Rohini Alumni Magazine Pizzazz 2017
JIMS Rohini Alumni Magazine Pizzazz 2017
 
TechByte 2017 - 14th Annual IT Symposium- - JIMS Rohini
TechByte 2017 - 14th Annual IT Symposium- - JIMS RohiniTechByte 2017 - 14th Annual IT Symposium- - JIMS Rohini
TechByte 2017 - 14th Annual IT Symposium- - JIMS Rohini
 
MDP on Conflict Management at Workplace
MDP on Conflict Management at WorkplaceMDP on Conflict Management at Workplace
MDP on Conflict Management at Workplace
 
JIMS Rohini PGDM Retail Management Program
JIMS Rohini PGDM Retail Management ProgramJIMS Rohini PGDM Retail Management Program
JIMS Rohini PGDM Retail Management Program
 
International Conference | ICAMP2017 - JIMS Rohini
International Conference | ICAMP2017 - JIMS RohiniInternational Conference | ICAMP2017 - JIMS Rohini
International Conference | ICAMP2017 - JIMS Rohini
 
JIMS Rohini PGDM Admissions are Open For Session 2017-19
JIMS Rohini PGDM Admissions are Open For Session 2017-19JIMS Rohini PGDM Admissions are Open For Session 2017-19
JIMS Rohini PGDM Admissions are Open For Session 2017-19
 
JIMS Rohini Conclave 2016 "Digitalization of Businesses: Promises and Perils’
 JIMS Rohini Conclave 2016 "Digitalization of Businesses: Promises and Perils’ JIMS Rohini Conclave 2016 "Digitalization of Businesses: Promises and Perils’
JIMS Rohini Conclave 2016 "Digitalization of Businesses: Promises and Perils’
 
JIMS Rohini IT Flash Monthly Newsletter - October Issue
JIMS Rohini IT Flash Monthly Newsletter  - October IssueJIMS Rohini IT Flash Monthly Newsletter  - October Issue
JIMS Rohini IT Flash Monthly Newsletter - October Issue
 
JIMS Rohini News - Introduction to Derivatives
JIMS Rohini News - Introduction to DerivativesJIMS Rohini News - Introduction to Derivatives
JIMS Rohini News - Introduction to Derivatives
 
Top Management College - JIMS Rohini News - Data Collection - PGDM - BBA - ...
Top Management College - JIMS Rohini News - Data Collection -  PGDM - BBA  - ...Top Management College - JIMS Rohini News - Data Collection -  PGDM - BBA  - ...
Top Management College - JIMS Rohini News - Data Collection - PGDM - BBA - ...
 
Post Graduate Diploma in Management - JIMS Rohini Admissions Open 2016 - JIMS...
Post Graduate Diploma in Management - JIMS Rohini Admissions Open 2016 - JIMS...Post Graduate Diploma in Management - JIMS Rohini Admissions Open 2016 - JIMS...
Post Graduate Diploma in Management - JIMS Rohini Admissions Open 2016 - JIMS...
 
Replacement Problem - Dr. Bhupender SOM - JIMS Rohini Faculty Presentation
Replacement Problem - Dr. Bhupender SOM - JIMS Rohini Faculty PresentationReplacement Problem - Dr. Bhupender SOM - JIMS Rohini Faculty Presentation
Replacement Problem - Dr. Bhupender SOM - JIMS Rohini Faculty Presentation
 

Último

Top profile Call Girls In Vadodara [ 7014168258 ] Call Me For Genuine Models ...
Top profile Call Girls In Vadodara [ 7014168258 ] Call Me For Genuine Models ...Top profile Call Girls In Vadodara [ 7014168258 ] Call Me For Genuine Models ...
Top profile Call Girls In Vadodara [ 7014168258 ] Call Me For Genuine Models ...
gajnagarg
 
In Riyadh ((+919101817206)) Cytotec kit @ Abortion Pills Saudi Arabia
In Riyadh ((+919101817206)) Cytotec kit @ Abortion Pills Saudi ArabiaIn Riyadh ((+919101817206)) Cytotec kit @ Abortion Pills Saudi Arabia
In Riyadh ((+919101817206)) Cytotec kit @ Abortion Pills Saudi Arabia
ahmedjiabur940
 
Abortion pills in Jeddah | +966572737505 | Get Cytotec
Abortion pills in Jeddah | +966572737505 | Get CytotecAbortion pills in Jeddah | +966572737505 | Get Cytotec
Abortion pills in Jeddah | +966572737505 | Get Cytotec
Abortion pills in Riyadh +966572737505 get cytotec
 
怎样办理伦敦大学毕业证(UoL毕业证书)成绩单学校原版复制
怎样办理伦敦大学毕业证(UoL毕业证书)成绩单学校原版复制怎样办理伦敦大学毕业证(UoL毕业证书)成绩单学校原版复制
怎样办理伦敦大学毕业证(UoL毕业证书)成绩单学校原版复制
vexqp
 
Top profile Call Girls In Chandrapur [ 7014168258 ] Call Me For Genuine Model...
Top profile Call Girls In Chandrapur [ 7014168258 ] Call Me For Genuine Model...Top profile Call Girls In Chandrapur [ 7014168258 ] Call Me For Genuine Model...
Top profile Call Girls In Chandrapur [ 7014168258 ] Call Me For Genuine Model...
gajnagarg
 
Top profile Call Girls In Bihar Sharif [ 7014168258 ] Call Me For Genuine Mod...
Top profile Call Girls In Bihar Sharif [ 7014168258 ] Call Me For Genuine Mod...Top profile Call Girls In Bihar Sharif [ 7014168258 ] Call Me For Genuine Mod...
Top profile Call Girls In Bihar Sharif [ 7014168258 ] Call Me For Genuine Mod...
nirzagarg
 
Reconciling Conflicting Data Curation Actions: Transparency Through Argument...
Reconciling Conflicting Data Curation Actions:  Transparency Through Argument...Reconciling Conflicting Data Curation Actions:  Transparency Through Argument...
Reconciling Conflicting Data Curation Actions: Transparency Through Argument...
Bertram Ludäscher
 
Gartner's Data Analytics Maturity Model.pptx
Gartner's Data Analytics Maturity Model.pptxGartner's Data Analytics Maturity Model.pptx
Gartner's Data Analytics Maturity Model.pptx
chadhar227
 
Top profile Call Girls In Tumkur [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Tumkur [ 7014168258 ] Call Me For Genuine Models We...Top profile Call Girls In Tumkur [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Tumkur [ 7014168258 ] Call Me For Genuine Models We...
nirzagarg
 
Abortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Doha Qatar (+966572737505 ! Get CytotecAbortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Riyadh +966572737505 get cytotec
 
一比一原版(UCD毕业证书)加州大学戴维斯分校毕业证成绩单原件一模一样
一比一原版(UCD毕业证书)加州大学戴维斯分校毕业证成绩单原件一模一样一比一原版(UCD毕业证书)加州大学戴维斯分校毕业证成绩单原件一模一样
一比一原版(UCD毕业证书)加州大学戴维斯分校毕业证成绩单原件一模一样
wsppdmt
 

Último (20)

Vadodara 💋 Call Girl 7737669865 Call Girls in Vadodara Escort service book now
Vadodara 💋 Call Girl 7737669865 Call Girls in Vadodara Escort service book nowVadodara 💋 Call Girl 7737669865 Call Girls in Vadodara Escort service book now
Vadodara 💋 Call Girl 7737669865 Call Girls in Vadodara Escort service book now
 
Digital Transformation Playbook by Graham Ware
Digital Transformation Playbook by Graham WareDigital Transformation Playbook by Graham Ware
Digital Transformation Playbook by Graham Ware
 
Top profile Call Girls In Vadodara [ 7014168258 ] Call Me For Genuine Models ...
Top profile Call Girls In Vadodara [ 7014168258 ] Call Me For Genuine Models ...Top profile Call Girls In Vadodara [ 7014168258 ] Call Me For Genuine Models ...
Top profile Call Girls In Vadodara [ 7014168258 ] Call Me For Genuine Models ...
 
SAC 25 Final National, Regional & Local Angel Group Investing Insights 2024 0...
SAC 25 Final National, Regional & Local Angel Group Investing Insights 2024 0...SAC 25 Final National, Regional & Local Angel Group Investing Insights 2024 0...
SAC 25 Final National, Regional & Local Angel Group Investing Insights 2024 0...
 
In Riyadh ((+919101817206)) Cytotec kit @ Abortion Pills Saudi Arabia
In Riyadh ((+919101817206)) Cytotec kit @ Abortion Pills Saudi ArabiaIn Riyadh ((+919101817206)) Cytotec kit @ Abortion Pills Saudi Arabia
In Riyadh ((+919101817206)) Cytotec kit @ Abortion Pills Saudi Arabia
 
Abortion pills in Jeddah | +966572737505 | Get Cytotec
Abortion pills in Jeddah | +966572737505 | Get CytotecAbortion pills in Jeddah | +966572737505 | Get Cytotec
Abortion pills in Jeddah | +966572737505 | Get Cytotec
 
怎样办理伦敦大学毕业证(UoL毕业证书)成绩单学校原版复制
怎样办理伦敦大学毕业证(UoL毕业证书)成绩单学校原版复制怎样办理伦敦大学毕业证(UoL毕业证书)成绩单学校原版复制
怎样办理伦敦大学毕业证(UoL毕业证书)成绩单学校原版复制
 
Discover Why Less is More in B2B Research
Discover Why Less is More in B2B ResearchDiscover Why Less is More in B2B Research
Discover Why Less is More in B2B Research
 
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed
 
Top profile Call Girls In Chandrapur [ 7014168258 ] Call Me For Genuine Model...
Top profile Call Girls In Chandrapur [ 7014168258 ] Call Me For Genuine Model...Top profile Call Girls In Chandrapur [ 7014168258 ] Call Me For Genuine Model...
Top profile Call Girls In Chandrapur [ 7014168258 ] Call Me For Genuine Model...
 
Top profile Call Girls In Bihar Sharif [ 7014168258 ] Call Me For Genuine Mod...
Top profile Call Girls In Bihar Sharif [ 7014168258 ] Call Me For Genuine Mod...Top profile Call Girls In Bihar Sharif [ 7014168258 ] Call Me For Genuine Mod...
Top profile Call Girls In Bihar Sharif [ 7014168258 ] Call Me For Genuine Mod...
 
Reconciling Conflicting Data Curation Actions: Transparency Through Argument...
Reconciling Conflicting Data Curation Actions:  Transparency Through Argument...Reconciling Conflicting Data Curation Actions:  Transparency Through Argument...
Reconciling Conflicting Data Curation Actions: Transparency Through Argument...
 
Gartner's Data Analytics Maturity Model.pptx
Gartner's Data Analytics Maturity Model.pptxGartner's Data Analytics Maturity Model.pptx
Gartner's Data Analytics Maturity Model.pptx
 
Top profile Call Girls In Tumkur [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Tumkur [ 7014168258 ] Call Me For Genuine Models We...Top profile Call Girls In Tumkur [ 7014168258 ] Call Me For Genuine Models We...
Top profile Call Girls In Tumkur [ 7014168258 ] Call Me For Genuine Models We...
 
Data Analyst Tasks to do the internship.pdf
Data Analyst Tasks to do the internship.pdfData Analyst Tasks to do the internship.pdf
Data Analyst Tasks to do the internship.pdf
 
Abortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Doha Qatar (+966572737505 ! Get CytotecAbortion pills in Doha Qatar (+966572737505 ! Get Cytotec
Abortion pills in Doha Qatar (+966572737505 ! Get Cytotec
 
Harnessing the Power of GenAI for BI and Reporting.pptx
Harnessing the Power of GenAI for BI and Reporting.pptxHarnessing the Power of GenAI for BI and Reporting.pptx
Harnessing the Power of GenAI for BI and Reporting.pptx
 
Switzerland Constitution 2002.pdf.........
Switzerland Constitution 2002.pdf.........Switzerland Constitution 2002.pdf.........
Switzerland Constitution 2002.pdf.........
 
Sequential and reinforcement learning for demand side management by Margaux B...
Sequential and reinforcement learning for demand side management by Margaux B...Sequential and reinforcement learning for demand side management by Margaux B...
Sequential and reinforcement learning for demand side management by Margaux B...
 
一比一原版(UCD毕业证书)加州大学戴维斯分校毕业证成绩单原件一模一样
一比一原版(UCD毕业证书)加州大学戴维斯分校毕业证成绩单原件一模一样一比一原版(UCD毕业证书)加州大学戴维斯分校毕业证成绩单原件一模一样
一比一原版(UCD毕业证书)加州大学戴维斯分校毕业证成绩单原件一模一样
 

Assignment Problem

  • 3. 3 Jagan Institute of Management Studies (JIMS) www.JimsIndia.org This is a special type of LPP in which the objective function is to find the optimum allocation of a number of tasks (jobs) to an equal number of facilities (persons). Here we make the assumption that each person can perform each job but with varying degree of efficiency. For example, a departmental head may have 4 persons available for assignment and 4 jobs to fill. Then his interest is to find the best assignment which will be in the best interest of the department. General form of an Assignment Problem: The assignment problem can be stated in the form of n × n, matrix [cij] called the cost of effectiveness matrix, where cij is the cost of assigning ith person (facility) to jth job.
  • 4. 4 Jagan Institute of Management Studies (JIMS) www.JimsIndia.org Effectiveness Matrix: Jobs Persons 1 2 3 .......... j .......... n 1 c11 c12 c13 .......... cij .......... cin 2 c21 c22 c23 .......... c2j .......... c2n 3 c31 c32 c33 .......... c3j .......... c3n ....... ....... ........ ......... ........ ......... ....... ........ i ci1 ci2 ci3 ........ cij ........ cin ...... ........ ....... ......... .......... ....... ......... ........ n cn1 cn2 cn3 ......... cnj ........ cnn
  • 5. 5 Jagan Institute of Management Studies (JIMS) www.JimsIndia.org Mathematical Formulation : A person can be assigned to n jobs in n! Possible ways. One method may be to find all possible n! assignments and evaluate total cost in all cases. Then the assignment with minimum cost (as required) will give the optimal assignment. But this method is extremely laborious. For example if n = 8, then the number of such possible assignments is 8! = 40320. The evaluation cost for all these allocation will take huge time. Therefore there is a need to develop an easy computational technique for the solution of assignment problem. Mathematical formulation of an assignment problem can be stated as follows:    n i n j ijij xcZ 1 1 Where xij = { 1, if ith person is assigned to the jth job. 0, if ith person is not assigned the jth job. Subject to the conditions:   n i ij njx 1 .,.......,2,1,1 Which means that only one job is done by the ith person, i=1,2,......,n.
  • 6. 6 Jagan Institute of Management Studies (JIMS) www.JimsIndia.org Which means that only one person should be assigned the jth job, j=1,2,......,n. Reduction Theorem: If in an assignment problem, a constant is added or subtracted to every element of a row (or column) of the cost matrix [cij], then an assignment which minimizes the total cost for one matrix, also minimizes the total cost for the other matrix.   n j ij nix 1 .,.......,2,1,1
  • 7. 7 Jagan Institute of Management Studies (JIMS) www.JimsIndia.org (Hungarian Method or Reduced Matrix Method) 1. Solve the following minimal assignment problem: Solution of an Assignment Problem: Man Job 1 2 3 4 1 12 30 21 15 2 18 33 9 31 3 44 25 24 21 4 23 30 28 14
  • 8. 8 Jagan Institute of Management Studies (JIMS) www.JimsIndia.org Step 1: Select the minimum of each row and subtract from all the elements of corresponding row. 0 9 23 9 18 9 4 16 14 3 18 0 0 22 18 3 0
  • 9. 9 Jagan Institute of Management Studies (JIMS) www.JimsIndia.org Step 2: Select the minimum of each column and subtract from all the elements of corresponding column. 0 9 23 9 14 9 0 12 14 3 0 0 22 3 0 20
  • 10. 10 Jagan Institute of Management Studies (JIMS) www.JimsIndia.org Step 3: Starting with row 1 of the matrix obtained in step 2. Examine rows successively until a row with exactly one zero element is found. Mark () at this zero, as an assignment is made there. Mark (×) at all the other zeros in the column (in which we mark ) to show that they can not be used to make other assignments. Proceed in this way until the last row is examined. 9 0 9 23 12 14 20 0 3 9 22 3 0 0 14 0 0 ×
  • 11. 11 Jagan Institute of Management Studies (JIMS) www.JimsIndia.org Step 4: After examining all the rows completely. Proceed similarly examining the columns. Examine column starting with column 1 until a column containing exactly one unmarked 0 is found. Mark () at this zero. Mark (×) at all the other zeros in the rows (in which we mark ). Proceed in this way until the last column is examined. 9 0 9 23 12 14 20 0 3 9 22 3 0 0 14 0 0 ×
  • 12. 12 Jagan Institute of Management Studies (JIMS) www.JimsIndia.org Step 5. Continue the these operations until successively until we reach to any of the two situations: a. All the zero’s are marked  or ×. b. The remaining unmarked zeros lies at-least two in a row or a column. In case (A) we have the maximal assignment (assignment as much as we can) and in case (b) still we have some zeros to be treated for which we use the trail and error method to avoid the use of highly complicated algorithm. Now there are two possibilities: a. If it has an assignment in each row and each column (i.e. The total number of marked  zero is exactly equal to n), then the complete optimal solution is obtained.
  • 13. 13 Jagan Institute of Management Studies (JIMS) www.JimsIndia.org Since every row and every column has one assignment, so we have the complete optimal zero assignment. JOB 1 2 3 4 MAN 1 3 2 4 Which is the optimal assignment. b. If it does not contain assignment in every row and every column (i.e. The total number of marked  zeros is less than n), then one has to modify the cost (effectiveness) matrix by adding or subtracting to create some more zeros to it.
  • 14. 14 Jagan Institute of Management Studies (JIMS) www.JimsIndia.org Man Job 1 2 3 4 1 2 3 4 5 2 4 5 6 7 3 7 8 9 8 4 3 5 8 4 2. A department head has 4 subordinates, and 4 tasks to be performed. The subordinates differ in efficiency and the tasks differ in their intrinsic difficulty. His estimate of the times each man would take to perform each task is given in the effectiveness matrix below. How should the tasks to be allocated, one to a man, so as to minimize the total man hour?
  • 15. 15 Jagan Institute of Management Studies (JIMS) www.JimsIndia.org 0 0 0 2 0 0 0 2 0 0 0 0 0 1 3 0 × × × × × × × ×   
  • 16. 16 Jagan Institute of Management Studies (JIMS) www.JimsIndia.org Since every row and every column has one assignment, so we have the complete optimal zero assignment. JOB 1 2 3 4 MAN 2 3 4 1 Which is the optimal assignment.
  • 17. 17 Jagan Institute of Management Studies (JIMS) www.JimsIndia.org Man Job 1 2 3 4 5 6 A 9 22 58 11 19 27 B 43 78 72 50 63 48 C 41 28 91 37 45 33 D 74 42 27 49 39 32 E 36 11 57 22 25 18 F 3 56 53 31 17 28 2. Solve the following assignment problem?
  • 18. 18 Jagan Institute of Management Studies (JIMS) www.JimsIndia.org 0 13 49 0 0 13 0 35 29 5 10 0 13 0 63 7 7 0 47 15 0 20 2 0 25 0 46 9 4 2 0 53 50 26 4 20 × × × × × ×
  • 19. 19 Jagan Institute of Management Studies (JIMS) www.JimsIndia.org 0 13 49 0 0 13 0 35 29 5 10 0 13 0 63 7 7 0 47 15 0 20 2 0 25 0 46 9 4 2 0 53 50 26 4 20 × × × × × ×  1 1. We mark (  ) row 3 in which there is no assignment.
  • 20. 20 Jagan Institute of Management Studies (JIMS) www.JimsIndia.org 0 13 49 0 0 13 0 35 29 5 10 0 13 0 63 7 7 0 47 15 0 20 2 0 25 0 46 9 4 2 0 53 50 26 4 20 × × × × × ×  1 2. We mark (  ) columns 2 and 6 in which have zeros in marked rows.  2  3
  • 21. 21 Jagan Institute of Management Studies (JIMS) www.JimsIndia.org 0 13 49 0 0 13 0 35 29 5 10 0 13 0 63 7 7 0 47 15 0 20 2 0 25 0 46 9 4 2 0 53 50 26 4 20 × × × × × ×  1 2. We mark (  ) columns 2 and 6 in which have zeros in marked rows.  2  3  4  5
  • 22. 22 Jagan Institute of Management Studies (JIMS) www.JimsIndia.org 0 13 49 0 0 13 0 35 29 5 10 0 13 0 63 7 7 0 47 15 0 20 2 0 25 0 46 9 4 2 0 53 50 26 4 20 × × × × × ×  1 2. We mark (  ) columns 2 and 6 in which have zeros in marked rows.  2  3  4  5  6  7
  • 23. 23 Jagan Institute of Management Studies (JIMS) www.JimsIndia.org 0 13 49 0 0 13 0 35 29 5 10 0 13 0 63 7 7 0 47 15 0 20 2 0 25 0 46 9 4 2 0 53 50 26 4 20 × × × × × ×  1 5. Now we draw lines through all marked columns 1, 2, 6. Then we draw lines through unmarked row 1 and 4 having zeros through which there is no line. In this way we get the minimum number of lines covering all zeros.  2  3  4  5  6  7 L3L2L1 L5 L4
  • 24. 24 Jagan Institute of Management Studies (JIMS) www.JimsIndia.org 4 17 49 0 0 17 0 35 25 1 6 0 13 0 59 3 3 0 51 19 0 20 2 4 25 0 42 5 0 2 0 53 46 22 0 20 6. Now select minimum of the left out elements. Subtract it from the left out elements, add at the intersection of lines. While the elements lying on the lines will remain as they were. × × × × ×
  • 25. 25 Jagan Institute of Management Studies (JIMS) www.JimsIndia.org Solution to the assignment problem is given by: Job a b c d e f Man 4 1 6 3 2 5
  • 26. 26 Jagan Institute of Management Studies (JIMS) www.JimsIndia.org Man Job 1 2 3 4 5 A 1 3 2 3 6 B 2 4 3 1 5 C 5 6 3 4 6 D 3 1 4 2 2 E 1 5 6 5 4 2. Solve the following assignment problem?
  • 27. 27 Jagan Institute of Management Studies (JIMS) www.JimsIndia.org Case : An air – line that operates seven days a week has time table shown below. Cruse must have a minimum layover of 5 hours between flights. Obtain the pairing of flights that minimizes layover time away from home. For any given pairing the crew will be based at the city that results in the smaller layover. Delhi - Jaipur Jaipur - Delhi Fligth No Departure Arrival Flight No Departure Arrival 1 7.00 am 8.00 am 101 8.00 am 9.15 am 2 8.00 am 9.00 am 102 8.30 am 9.45 am 3 1.30 pm 2.30 pm 103 12.00 noon 1.15 pm 4 6.30 pm 7.30 pm 104 5.30 pm 6.45 pm For each pair also mention the town where the crew should be based.
  • 28. 28 Jagan Institute of Management Studies (JIMS) www.JimsIndia.org Layover time in hours when crew based at delhi. Layover time in hours when crew based at Jaipur. Flight 101 102 103 104 1 24 24.5 28 9.5 2 23 23.5 27 8.5 3 17.5 18 21.5 27 4 12.5 13 16.5 22 Flight 101 102 103 104 1 21.75 21.25 17.75 12.25 2 22.75 22.25 18.75 13.25 3 28.25 27.75 24.25 18.75 4 9.25 8.75 5.25 23.75 Solution:
  • 29. 29 Jagan Institute of Management Studies (JIMS) www.JimsIndia.org To avoid the fractions we consider either the layover times in terms of quarter hour as one unit of time or the layover times for 4 weeks. Thus multiplying the matrices by 4, the modified matrices are as follows: And Flight 101 102 103 104 1 96 98 112 38 2 92 94 108 34 3 70 72 86 108 4 50 52 66 88 Flight 101 102 103 104 1 87 85 71 49 2 91 89 75 53 3 113 111 97 75 4 37 35 21 95
  • 30. 30 Jagan Institute of Management Studies (JIMS) www.JimsIndia.org Now we combine the two tables, choosing that base which gives a lesser layover time for each pairing. The layover times marked with ( * ) denote the crew based at Jaipur, otherwise the crew is based at Delhi. Thus we get the following table. Table 6. (Minimum Layover times table) 87* 85* 71* 38 91* 89* 75* 34 70 72 86 75* 37* 35* 21* 88
  • 31. 31 Jagan Institute of Management Studies (JIMS) www.JimsIndia.org Subtracting the smallest element of each row from every element of the corresponding row and then subtracting the smallest element of each column from every element of the corresponding column, we get the following matrix. Table 7. 49* 45* 33* 0 57* 53* 41* 0 0 0 16 5* 16* 12* 0* 67  1  3  2 × × L1 L2
  • 32. 32 Jagan Institute of Management Studies (JIMS) www.JimsIndia.org Subtracting the smallest element of each row from every element of the corresponding row and then subtracting the smallest element of each column from every element of the corresponding column, we get the following matrix. Table 7. 16* 12* 0* 0 24* 20* 8* 0 0 0 16 38* 16* 12* 0* 100  4  3  2 × × L1 L2 ×  3 L3
  • 33. 33 Jagan Institute of Management Studies (JIMS) www.JimsIndia.org Applying the modification operations and making assignments again we get the following table. Table 9. 4* 0* 0* 0 12* 8* 8* 0 0 0 28 50* 4* 0* 0* 100
  • 34. 34 Jagan Institute of Management Studies (JIMS) www.JimsIndia.org The optimal solution to the problem is given by following 1 102 (Crew at jaipur) 2 104 (crew at Jaipur) 3 101 (crew at Jaipur) 4 103 (crew at Delhi) The minimum layover time is 210 hours for 4 weeks i.e. 52 hours and 30 minutes per week.
  • 35. 35 Jagan Institute of Management Studies (JIMS) www.JimsIndia.org Case : A small air – plane company operating 7 days a week, serves three cities A, B and C according to the schedule shown in the following table. The layover cost per shop is roughly proportional to the square of the layover time. How should planes be assigned the flights so as to minimize the total layover cost? Flight No. From Departure To Arrival A1B A 09.00 AM B Noon A2B A 10.00 AM B 01.00 PM A3B A 03.00 PM B 06.00 PM A4C A 08.00 PM C Midnight A5C A 10.00 PM C 02.00 AM B1A B 04.00 AM A 07.00 AM B2A B 11.00 AM A 02.00 PM B3A B 03.00 PM A 06.00 PM C1A C 07.00 AM A 11.00 AM C2A C 03.00 PM A 07.00 PM
  • 36. 36 Jagan Institute of Management Studies (JIMS) www.JimsIndia.org As assignment problems is called unbalanced assignment problem whenever the number of tasks (jobs) are not equal to the number of facilities (persons). Thus, the cost of matrix of an assignment problem is not the square matrix. For the solution of such problems we ass the dummy rows and dummy columns to the given matrix to make it a square matrix. The costs in these dummy rows or columns are taken to be 0. Now the problem reduce to the balanced assignment problem and can be solved by assignment algorithm. Maximization Problem : Unbalanced Transportation Problem : Sometimes the assignment problem deals with the maximization of the objective function i.e., the problem may be to assign persons to the jobs in such a way that the expected profit is maximized. Such maximization problem may be solved by converting it to minimization problem. This is done converting the profit matrix to the cost (i.e. loss) matrix in either of the following two ways. (i) Subtract each element of the given matrix (profit matrix) from the greatest element of the matrix to get the equivalent cost (i.e. loss) matrix. or (ii) Place minus sign before each element of the profit matrix to get the equivalent cost matrix.
  • 37. 37 Jagan Institute of Management Studies (JIMS) www.JimsIndia.org Case: Alpha corporation has four plants each of which can manufacture any of the four products. Production costs differ from plant to plant as do sales revenue. From the following data, obtain which product each plant should produce to maximize profit. Product Plant A B C D 1 50 68 49 62 2 60 70 51 74 3 55 67 53 70 4 58 65 54 69 Product Plant A B C D 1 49 60 45 61 2 55 63 45 69 3 52 62 49 68 4 55 64 48 66 Sales revenue (Rs 1000) Production cost (Rs 1000)
  • 38. 38 Jagan Institute of Management Studies (JIMS) www.JimsIndia.org 0 13 49 0 0 13 0 35 29 5 10 0 13 0 63 7 7 0 47 15 0 20 2 0 25 0 46 9 4 2 0 53 50 26 4 20 × × × × × ×
  • 39. Jagan Institute of Management Studies
  • 40. 40 Jagan Institute of Management Studies (JIMS) www.JimsIndia.org About JIMS JIMS Rohini is one of the leading MBA institutes of Delhi. We impart professional education both at post graduate and undergraduate levels in the fields of management and information technology. Our PGDM program is approved by the AICTE and is accredited from NBA for excellence in quality education. PGDM program has also been granted equivalence to MBA degree by the AIU. We offer specialized PGDM programs in International Business and Retail as well. JIMS, Rohini, Sector 5 also offers technical programs viz BBA, BCA & MCA affiliated from GGSIPU. Established in 1993, JIMS completed its 20 years of Excellence in 2013. We offer excellent academic structure, industry interaction and job opportunities.
  • 41. Address 3, Institutional Area, Sector-5, Rohini (Near Rajiv Gandhi Cancer Research Institute), Delhi-110085. Contact Details Phone : 011-45184000/1/2 Mobile : +91-9871097501 Email : admissions@jimsindia.org GET IN TOUCH Web Address www.jimsindia.org Facebook: https://www.facebook.com/JimsDelhi?sk=wall Twitter: https://twitter.com/JIMSsec5Rohini G+: https://plus.google.com/+jimsrohini/posts?hl=en YouTube: https://www.youtube.com/user/jimsquery/ LinkedIn: https://www.linkedin.com/company/jagan- institute-of-management-studies-jims- Slideshare: http://www.slideshare.net/JimsIndia Pinterest: https://www.pinterest.com/jimsrohini/