SlideShare a Scribd company logo
International Journal of Trend in Scientific Research and Development (IJTSRD)
Volume 3 Issue 5, August 2019 Available Online: www.ijtsrd.com e-ISSN: 2456 – 6470
@ IJTSRD | Unique Paper ID – IJTSRD26712 | Volume – 3 | Issue – 5 | July - August 2019 Page 1360
Minimization of Assignment Problems
Mie Mie Aung1, Yin Yin Cho1, Khin Htay2, Khin Soe Myint1
1Information Technology Supporting and Maintenance Department, Computer University, Meiktila, Myanmar
2Faculty of Information Science, Computer University, Meiktila, Myanmar
How to cite this paper: Mie Mie Aung |
Yin Yin Cho | Khin Htay | Khin Soe Myint
"Minimization of Assignment Problems"
Published in
International
Journal of Trend in
Scientific Research
and Development
(ijtsrd), ISSN: 2456-
6470, Volume-3 |
Issue-5, August
2019, pp.1360-1362,
https://doi.org/10.31142/ijtsrd26712
Copyright © 2019 by author(s) and
International Journal ofTrend inScientific
Research and Development Journal. This
is an Open Access article distributed
under the terms of
the Creative
Commons Attribution
License (CC BY 4.0)
(http://creativecommons.org/licenses/by
/4.0)
ABSTRACT
The assignment problem is a special type of linear programming problemand
it is sub-class of transportation problem. Assignment problems are defined
with two sets of inputs i.e. set of resources and set of demands. Hungarian
algorithm is able to solve assignment problems with precisely defined
demands and resources.
Nowadays, many organizations and competition companies considermarkets
of their products. They use many salespersons to improve their organizations
marketing. Salespersons travel form one city to another cityfortheirmarkets.
There are some problems in travelling which salespeopleshould gowhichcity
in minimum cost. So, travelling assignment problem is a main process for
many business functions.
KEYWORDS: Assignment Problem, HungarianAlgorithm, OptimizationResearch,
Transportation Problem, Optimal Solution
1. INTRODUCTION
The assignment problem is a special case of the transportation problem in
Operation Research (OR). It arises in a variety of decision-making situations.
Exactly one resource has to be assigned to each of the demands and each of the
resources can be chosen at most once. We can calculate the cost function of a
specific assignment as the sum of all costs in the assignmentmade.Appropriate
resource from the set of resources available has to be assigned to each of the
demands in the way that the cost of the whole assignment is minimal.
Optimality is achieved when an assignment with a minimal
value of cost function is found (i.e. no other assignment with
lower cost exists) [6]. There are several methods of solving
the assignment problem such as
A. Enumeration method
B. Transportation model
C. Hungarian method
D. The Alternate method
One of the more famous and effective solving methods is the
"Hungarian Method". This algorithm is only able to solve
exactly defined assignment problems, where each demand
and each resource is described with exactly defined
properties. The Hungarian algorithm is an algorithm for
solving a matchingproblemormoregenerallyanassignment
linear programming problem.
2. RELATED WORKS
In [7], the paper simplifies the algorithm of searchingforthe
even alternating path that contains a maximal elementusing
the minimal weighted k-matching theorem and intercept
graph. The authors in [3] propose a new mechanism for
combinatorial assignment for example, assigning schedules
of courses to students based on an approximation to
competitive equilibrium fromequal incomes (CEEI)inwhich
incomes are unequal but arbitrarily close together. The
Hungarian algorithm was extended withfuzzylogicmethods
in order to be able to solve vaguely defined assignment
problems without their exact formalization in [5]. This
research in [7] is aimed at developinga systemwith which to
assess the abilities of baseball players in all practical aspects
of the sport and compose a team in which all the players are
assigned to positions such that the collective team skill is
maximized for a specific goal page title section.
In [2], the concept of assignment problem was applied to
solve a problem for a Legal Firm A in Kumasi which had a
difficulty in assigning nine different cases to its nine junior
lawyers. Based on the data collected, Management Scientist
Version 5 Software which uses Hungarian Method was used
to solve the problem. Optimal assignments ofthecases to the
junior lawyers were obtained for the Legal Firm.
3. THEORETICAL BACKGROUND
Major Combinatorial optimization is a subset of
mathematical optimization that is related to operations
research, algorithm theory, and computational complexity
theory.
3.1 SOME PROBLEMS IN COMBINATORIAL
OPTIMIZATION
Some scheduling problems can be solved efficiently by
reducing the problems to well-known combinatorial
optimization problems, such as linear programs, maximum
flow problems, or transportation problems [1]. In this
section, we will give a brief survey of these combinatorial
optimization problems.
3.1.1. LINEAR AND INTEGER PROGRAMMING
A linear program is an optimization problem of the form in
equation (1).
IJTSRD26712
International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470
@ IJTSRD | Unique Paper ID – IJTSRD26712 | Volume – 3 | Issue – 5 | July - August 2019 Page 1361
Minimizez(x) = 𝑐 𝑥 + ⋯ + 𝑐 𝑥 (1)
Subject to 𝑐 𝑥 + ⋯ + 𝑐 𝑥 ≥ 𝑏
.
𝑐 𝑥 + ⋯ + 𝑐 𝑥 ≥ 𝑏
𝑥 ≥ 0 for i =1, ……, n.
The most popular method for solving linear programs is the
simplex algorithm. It is an iterativeprocedurewhichfinds an
optimal solution or detects infeasibility or unboundedness
after a finite number of steps. Although the number of
iteration steps may be exponential, the simplex algorithm is
very efficient in practice.
3.1.2. TRANSSHIPMENT PROBLEMS
The transshipment problem is a special linear program. A
transshipment problem is given by
Minimize ∑ 𝑐 𝑥( , )∈ (2)
Subject to
∑ 𝑥( , )∈
_ ∑ 𝑥( , )∈
= 𝑏 for all i ∈ V
𝑙 ≤ 𝑥 ≤ 𝑢 for all ( i , j) ∈ A. .
Standard algorithms for the transshipment problem are the
network simplex method and the out-of-kilter algorithm,
which was developed independently by Yakovleva, Minty,
and Fulkerson. Both methods have the property of
calculating an integral flow if all finite bi, lij , and uij are
integers.
3.1.3. THE MAXIMUM FLOW PROBLEM
For this problem, we have the linear programming
formulation
Maximize u (3)
Subject to
∑ 𝑥( , )∈
− ∑ 𝑥( , )∈
=
−𝑣 𝑓𝑜𝑟 𝑖 = 𝑠
𝑣 𝑓𝑜𝑟 𝑖 = 𝑠
0 𝑜𝑡ℎ𝑒𝑟𝑤𝑖𝑠𝑒
 
0≤ 𝑥 ≤ 𝑢 for ( i, j ) .
The maximum flow problem may be interpreted as a
transshipment problem with exactly onesupply vertexs and
exactly one demand vertext, and variablesupply (demand)v
which should be as large as possible.
3.1.4. BIPARTITE MATCHING PROBLEMS
Consider a bipartite graph, i.e. a graph G = (V, A) where the
vertex set V is the union of two disjoint sets V1 and V2, and
arcs A ⊆ V1×V2. A matching is a set M ⊆ A of arcs such that
no two arcs in M have a common vertex. The problem is to
find a matching M with maximal cardinality. The maximum
cardinality bipartite matching problem may be reduced to a
maximum flow.
3.1.5. THE ASSIGNMENT PROBLEM
The assignment problem is to find an assignment that is
minimized. We may represent the assignment problem by
the n×m-matrix C = (cij) and formulateitas a linearprogram:
Minimize ∑ ∑ 𝑐 𝑥 (4)Subjectto ∑ 𝑥 = 1i=1,….,
n
∑ 𝑥 ≤ 1 j = 1 , …. , m
𝑥 ∈ {0,1} 𝑖 = 1 , … . , 𝑛; 𝑗 = 1 , … . , 𝑚.
The first algorithm for the assignment problem was the
Hungarian method introduced by Kuhn. It solves the
assignment problem in O(n2m) steps by exploiting its special
structure.
4. SOLVING METHOD FOR ASSIGNMENT PROBLEMS
Hungarian method is used to find theproperassignmentand
this method is dependent upon two vital theorems, state
below.
Theorem 1: If a constant is added (or subtracted) to every
element of any row (or column) of the cost matrix [cij] in an
assignment problem then an assignment which minimizes
the total cost for the new matrix will also minimize the total
cost matrix.
Theorem 2: If all cij ≥ 0 and there exists a solution x = x
such that ∑ c x = 0 then this solution is an optimal
solution, i.e., minimizes z.
4.1 THE HUNGARIAN ALGORITHM
The Hungarian method is a combinatorial optimization
algorithm that solves the assignment probleminpolynomial
time. This method was developed and published by Harold
Kuhn, who gave the name “Hungarian method” because the
algorithm was largely based on the earlier works of two
Hungarian mathematicians: Denes K nig and Jan Egervary.
In order to use this method, one needs to know only the cost
of making all the possible assignments. Each assignment
problem has a matrix (table) associated with it. It may be
noted that the assignment problem is a variation of the
transportation problem with two characteristics:
A. The cost matrix is a square matrix
B. The optimum solution for the problem would be such
that there would be such that there would be only one
assignment in a row or column of the cost matrix.
This method works on the principle of reducing the given
cost matrix to a matrix of opportunity cost. Opportunitycost
here shows the relative penalties associated with assigning
resource to an activity as opposed tomakingthebestorleast
assignment. The following algorithm applies the above
theorem to a given n × n cost matrix to find an optimal
assignment.
Step1. Transfer the cost matrix to square matrix.
Step2. Subtract the minimal element of each row from all
elements in the same row.
Step3. Subtract the minimal element of each column from
all elements in the same column.
Step4. Select rows and columns across which you draw
lines, in a way that all the zeros arecoveredand that
number of lines is minimal.
Step5. Find a minimal element that is not covered by any
line. Add its value to each element covered by both
lines and subtract it from each element that is not
covered by any line .Go back to step 4. If nothing
was done in step 5, go to step 6.
Step6. Assign resources to demands starting in the top
row. Assign a resource only when there is only one
zero in a row. As you make an assignment delete a
row and a column from which you have made it. If
there is no such assignment possible, move to the
next row. Stop when all assignments have been
made. If you reached the bottom of the matrix,
proceed to next step.
International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470
@ IJTSRD | Unique Paper ID – IJTSRD26712 | Volume – 3 | Issue – 5 | July - August 2019 Page 1362
Step7. Assign resources to demands starting in the
leftmost column. Assign a resource onlywhenthere
is only one zero in a row. As you make an
assignment delete a row and a column from which
you have made it. If there is no such assignment
possible, move to the next column. Stop when all
assignments have been made. If no assignments
were made in this step, choose a random zero value
and make an assignment. Proceed to step 6.
5. EXPERIMENTAL RESULT
For a company, currently have five salespeople on road-
meeting buyers. Salespeople are in Shanghai; Mumbai;
Taipei; Osaka and Yangon. In order to fly to five other cities:
Tokyo; Hong Kong; Beijing; Delhi and Bangkok.Theproblem
now is which salespeople should be assign to which city to
minimize the total cost of transportation. The table 1 shows
the cost of airplane tickets in dollars between these cities.
The problem is to find the minimum cost matchingofperson
to city. Where should we send each salesperson in order to
minimize airfare?
Table1 Cost Matrix of Assignment Problem
Dest:
Dept:
Tokyo
Hong
Kong
Beijing Delhi Bangkok
Shanghai 155 150 99 216 229
Mumbai 188 179 110 86 147
Taipei 144 124 99 253 266
Osaka 99 135 177 224 266
Yangon 131 130 184 230 221
Hungarian algorithmcanbe solvingthis assignment problem
of transportation. It can solve the best possible assignment
with minimum cost. The proper results areshowninTable2.
Experiment results of this assignment problemareshownin
Table 3.
Table2 Proper Results of Assignment Problem
Dest:
Dept:
Tokyo
Hong
Kong
Beijing Delhi Bangkok
Shanghai 155 150 99 216 229
Mumbai 188 179 110 86 147
Taipei 144 124 99 253 266
Osaka 99 135 177 224 266
Yangon 131 130 184 230 221
Table2 Experiment Results of Assignment Problem
Shanghai  Beijing 99
Mumbai  Delhi 86
Taipei  Hong Kong 124
Osaka  Tokyo 99
Yangon  Bangkok 221
Total cost 629
6. CONCLUSION AND FURTHER EXTENSION
This paper presented the most popular method for solving
assignment problem.AHungarianAlgorithm was introduced
for solving minimization problems. The Hungarian
Algorithm has systematic procedure and very easy to
understand. From this paper, it can be concluded that this
algorithm provides an optimal solution directly in few steps
for the minimization assignment problem. As this algorithm
consumes less time and easier to understand and apply so it
can be really helpful for decision makers. This algorithm
helps decision maker to minimize thecosts oftransportation
by finding an optimum solution for transportation routes. In
future work, we will apply this algorithm to various
transportation-related problems.
7. REFERENCES
[1] Dr. Peter Brucker, Scheduling Algorithms. Springer
Berlin Heidelberg New York
[2] Douglas Kwasi Boah, Isaac Kwasi Adu and Francis
Julius Gyebil, Assignment Problem in Legal Firm in
Kumasi, Ghana,Vol.2,2015, no.1,1- 5 HIKARI
Ltd,www.m-hikari.com, http://dx.doi.org/10.12988/
ijco.2015.41226
[3] Eric Budish “The Combinatorial Assignment Problem:
Approximate Competitive Equilibrium from Equal
Incomes” Journal of Political Economy, 2011, vol. 119,
no. 6MIHA MOˇSKON, Finding optimal solutions of
vaguely defined assignment problems. ISBN: 978-960-
474-281-3
[4] MIHA MOˇSKON” Finding optimal solutions of vaguely
defined assignment problems” Recent Researches in
Applied Computer and Applied Computational Science
ISBN: 978-960-474-281-3
[5] Miha Moškon (2011) Solving The Vaguely Defined
Assignment Problems. INTERNATIONAL JOURNAL OF
MATHEMATICAL MODELSANDMETHODSIN APPLIED
SCIENCES, Issue 4, Volume 5.
[6] Peter Karich “Optimizing Educational Schedules Using
Hungarian Algorithm and Iterated Local Search”
[7] S. S. Britz and M. J. von “Application of the Hungarian
Algorithm in Baseball Team Selectionand Assignment”

More Related Content

What's hot

Assignment Problem
Assignment ProblemAssignment Problem
Assignment Problem
JIMS Rohini Sector 5
 
simplex method
simplex methodsimplex method
simplex method
Dronak Sahu
 
Greedy Algorithm
Greedy AlgorithmGreedy Algorithm
Greedy Algorithm
Waqar Akram
 
Assignment problem ppt
Assignment problem ppt Assignment problem ppt
Assignment problem ppt
Babasab Patil
 
Solving linear programming model by simplex method
Solving linear programming model by simplex methodSolving linear programming model by simplex method
Solving linear programming model by simplex method
Roshan Kumar Patel
 
Operations Research Problem
Operations Research  ProblemOperations Research  Problem
Operations Research Problem
Taslima Mujawar
 
Integer Linear Programming
Integer Linear ProgrammingInteger Linear Programming
Integer Linear Programming
SukhpalRamanand
 
Gauss jordan and Guass elimination method
Gauss jordan and Guass elimination methodGauss jordan and Guass elimination method
Gauss jordan and Guass elimination method
Meet Nayak
 
Greedy Algorithm - Knapsack Problem
Greedy Algorithm - Knapsack ProblemGreedy Algorithm - Knapsack Problem
Greedy Algorithm - Knapsack Problem
Madhu Bala
 
Analytical Models of Parallel Programs
Analytical Models of Parallel ProgramsAnalytical Models of Parallel Programs
Analytical Models of Parallel Programs
Dr Shashikant Athawale
 
Greedy method
Greedy methodGreedy method
Greedy method
Anusha sivakumar
 
Branch and bound
Branch and boundBranch and bound
Branch and bound
Dr Shashikant Athawale
 
Topological sort
Topological sortTopological sort
Topological sort
Burhan Ahmed
 
0/1 DYNAMIC PROGRAMMING KNAPSACK PROBLEM
0/1 DYNAMIC PROGRAMMING KNAPSACK PROBLEM0/1 DYNAMIC PROGRAMMING KNAPSACK PROBLEM
0/1 DYNAMIC PROGRAMMING KNAPSACK PROBLEM
Mrunal Patil
 
Simplex method concept,
Simplex method concept,Simplex method concept,
Simplex method concept,
Dronak Sahu
 
Knapsack
KnapsackKnapsack
Knapsack
Karthik Chetla
 
Introduction to Optimization.ppt
Introduction to Optimization.pptIntroduction to Optimization.ppt
Introduction to Optimization.ppt
MonarjayMalbog1
 
Bisection & Regual falsi methods
Bisection & Regual falsi methodsBisection & Regual falsi methods
Bisection & Regual falsi methods
Divya Bhatia
 
Introduction to Machine Learning
Introduction to Machine LearningIntroduction to Machine Learning
Introduction to Machine Learning
Panimalar Engineering College
 

What's hot (20)

Assignment Problem
Assignment ProblemAssignment Problem
Assignment Problem
 
simplex method
simplex methodsimplex method
simplex method
 
Greedy Algorithm
Greedy AlgorithmGreedy Algorithm
Greedy Algorithm
 
Assignment problem ppt
Assignment problem ppt Assignment problem ppt
Assignment problem ppt
 
Solving linear programming model by simplex method
Solving linear programming model by simplex methodSolving linear programming model by simplex method
Solving linear programming model by simplex method
 
Operations Research Problem
Operations Research  ProblemOperations Research  Problem
Operations Research Problem
 
Integer Linear Programming
Integer Linear ProgrammingInteger Linear Programming
Integer Linear Programming
 
Gauss jordan and Guass elimination method
Gauss jordan and Guass elimination methodGauss jordan and Guass elimination method
Gauss jordan and Guass elimination method
 
Linear programming
Linear programmingLinear programming
Linear programming
 
Greedy Algorithm - Knapsack Problem
Greedy Algorithm - Knapsack ProblemGreedy Algorithm - Knapsack Problem
Greedy Algorithm - Knapsack Problem
 
Analytical Models of Parallel Programs
Analytical Models of Parallel ProgramsAnalytical Models of Parallel Programs
Analytical Models of Parallel Programs
 
Greedy method
Greedy methodGreedy method
Greedy method
 
Branch and bound
Branch and boundBranch and bound
Branch and bound
 
Topological sort
Topological sortTopological sort
Topological sort
 
0/1 DYNAMIC PROGRAMMING KNAPSACK PROBLEM
0/1 DYNAMIC PROGRAMMING KNAPSACK PROBLEM0/1 DYNAMIC PROGRAMMING KNAPSACK PROBLEM
0/1 DYNAMIC PROGRAMMING KNAPSACK PROBLEM
 
Simplex method concept,
Simplex method concept,Simplex method concept,
Simplex method concept,
 
Knapsack
KnapsackKnapsack
Knapsack
 
Introduction to Optimization.ppt
Introduction to Optimization.pptIntroduction to Optimization.ppt
Introduction to Optimization.ppt
 
Bisection & Regual falsi methods
Bisection & Regual falsi methodsBisection & Regual falsi methods
Bisection & Regual falsi methods
 
Introduction to Machine Learning
Introduction to Machine LearningIntroduction to Machine Learning
Introduction to Machine Learning
 

Similar to Minimization of Assignment Problems

The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)
theijes
 
A BI-OBJECTIVE MODEL FOR SVM WITH AN INTERACTIVE PROCEDURE TO IDENTIFY THE BE...
A BI-OBJECTIVE MODEL FOR SVM WITH AN INTERACTIVE PROCEDURE TO IDENTIFY THE BE...A BI-OBJECTIVE MODEL FOR SVM WITH AN INTERACTIVE PROCEDURE TO IDENTIFY THE BE...
A BI-OBJECTIVE MODEL FOR SVM WITH AN INTERACTIVE PROCEDURE TO IDENTIFY THE BE...
gerogepatton
 
A BI-OBJECTIVE MODEL FOR SVM WITH AN INTERACTIVE PROCEDURE TO IDENTIFY THE BE...
A BI-OBJECTIVE MODEL FOR SVM WITH AN INTERACTIVE PROCEDURE TO IDENTIFY THE BE...A BI-OBJECTIVE MODEL FOR SVM WITH AN INTERACTIVE PROCEDURE TO IDENTIFY THE BE...
A BI-OBJECTIVE MODEL FOR SVM WITH AN INTERACTIVE PROCEDURE TO IDENTIFY THE BE...
ijaia
 
NEW APPROACH FOR SOLVING FUZZY TRIANGULAR ASSIGNMENT BY ROW MINIMA METHOD
NEW APPROACH FOR SOLVING FUZZY TRIANGULAR ASSIGNMENT BY ROW MINIMA METHODNEW APPROACH FOR SOLVING FUZZY TRIANGULAR ASSIGNMENT BY ROW MINIMA METHOD
NEW APPROACH FOR SOLVING FUZZY TRIANGULAR ASSIGNMENT BY ROW MINIMA METHOD
IAEME Publication
 
A Comparison between FPPSO and B&B Algorithm for Solving Integer Programming ...
A Comparison between FPPSO and B&B Algorithm for Solving Integer Programming ...A Comparison between FPPSO and B&B Algorithm for Solving Integer Programming ...
A Comparison between FPPSO and B&B Algorithm for Solving Integer Programming ...
Editor IJCATR
 
DTB PRESENTATION.pptxdjdjdjdkdjdjjddjdkj
DTB PRESENTATION.pptxdjdjdjdkdjdjjddjdkjDTB PRESENTATION.pptxdjdjdjdkdjdjjddjdkj
DTB PRESENTATION.pptxdjdjdjdkdjdjjddjdkj
redminoteproplus795
 
A Comparative Analysis Of Assignment Problem
A Comparative Analysis Of Assignment ProblemA Comparative Analysis Of Assignment Problem
A Comparative Analysis Of Assignment Problem
Jim Webb
 
A COMPREHENSIVE ANALYSIS OF QUANTUM CLUSTERING : FINDING ALL THE POTENTIAL MI...
A COMPREHENSIVE ANALYSIS OF QUANTUM CLUSTERING : FINDING ALL THE POTENTIAL MI...A COMPREHENSIVE ANALYSIS OF QUANTUM CLUSTERING : FINDING ALL THE POTENTIAL MI...
A COMPREHENSIVE ANALYSIS OF QUANTUM CLUSTERING : FINDING ALL THE POTENTIAL MI...
IJDKP
 
Bender’s Decomposition Method for a Large Two-stage Linear Programming Model
Bender’s Decomposition Method for a Large Two-stage Linear Programming ModelBender’s Decomposition Method for a Large Two-stage Linear Programming Model
Bender’s Decomposition Method for a Large Two-stage Linear Programming Model
drboon
 
LP linear programming (summary) (5s)
LP linear programming (summary) (5s)LP linear programming (summary) (5s)
LP linear programming (summary) (5s)
Dionísio Carmo-Neto
 
SOLVING OPTIMAL COMPONENTS ASSIGNMENT PROBLEM FOR A MULTISTATE NETWORK USING ...
SOLVING OPTIMAL COMPONENTS ASSIGNMENT PROBLEM FOR A MULTISTATE NETWORK USING ...SOLVING OPTIMAL COMPONENTS ASSIGNMENT PROBLEM FOR A MULTISTATE NETWORK USING ...
SOLVING OPTIMAL COMPONENTS ASSIGNMENT PROBLEM FOR A MULTISTATE NETWORK USING ...
ijmnct
 
SOLVING OPTIMAL COMPONENTS ASSIGNMENT PROBLEM FOR A MULTISTATE NETWORK USING ...
SOLVING OPTIMAL COMPONENTS ASSIGNMENT PROBLEM FOR A MULTISTATE NETWORK USING ...SOLVING OPTIMAL COMPONENTS ASSIGNMENT PROBLEM FOR A MULTISTATE NETWORK USING ...
SOLVING OPTIMAL COMPONENTS ASSIGNMENT PROBLEM FOR A MULTISTATE NETWORK USING ...
ijmnct
 
A Novel Approach to Mathematical Concepts in Data Mining
A Novel Approach to Mathematical Concepts in Data MiningA Novel Approach to Mathematical Concepts in Data Mining
A Novel Approach to Mathematical Concepts in Data Mining
ijdmtaiir
 
A New Method to Solving Generalized Fuzzy Transportation Problem-Harmonic Mea...
A New Method to Solving Generalized Fuzzy Transportation Problem-Harmonic Mea...A New Method to Solving Generalized Fuzzy Transportation Problem-Harmonic Mea...
A New Method to Solving Generalized Fuzzy Transportation Problem-Harmonic Mea...
AI Publications
 
A HYBRID COA/ε-CONSTRAINT METHOD FOR SOLVING MULTI-OBJECTIVE PROBLEMS
A HYBRID COA/ε-CONSTRAINT METHOD FOR SOLVING MULTI-OBJECTIVE PROBLEMSA HYBRID COA/ε-CONSTRAINT METHOD FOR SOLVING MULTI-OBJECTIVE PROBLEMS
A HYBRID COA/ε-CONSTRAINT METHOD FOR SOLVING MULTI-OBJECTIVE PROBLEMS
ijfcstjournal
 
A HYBRID COA/ε-CONSTRAINT METHOD FOR SOLVING MULTI-OBJECTIVE PROBLEMS
A HYBRID COA/ε-CONSTRAINT METHOD FOR SOLVING MULTI-OBJECTIVE PROBLEMSA HYBRID COA/ε-CONSTRAINT METHOD FOR SOLVING MULTI-OBJECTIVE PROBLEMS
A HYBRID COA/ε-CONSTRAINT METHOD FOR SOLVING MULTI-OBJECTIVE PROBLEMS
ijfcstjournal
 
Efficient Solution of Two-Stage Stochastic Linear Programs Using Interior Poi...
Efficient Solution of Two-Stage Stochastic Linear Programs Using Interior Poi...Efficient Solution of Two-Stage Stochastic Linear Programs Using Interior Poi...
Efficient Solution of Two-Stage Stochastic Linear Programs Using Interior Poi...
SSA KPI
 
Application of-computational-intelligence-techniques-for-economic-load-dispatch
Application of-computational-intelligence-techniques-for-economic-load-dispatchApplication of-computational-intelligence-techniques-for-economic-load-dispatch
Application of-computational-intelligence-techniques-for-economic-load-dispatchCemal Ardil
 
Optimal Allocation Policy for Fleet Management
Optimal Allocation Policy for Fleet ManagementOptimal Allocation Policy for Fleet Management
Optimal Allocation Policy for Fleet Management
YogeshIJTSRD
 

Similar to Minimization of Assignment Problems (20)

The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)
 
A BI-OBJECTIVE MODEL FOR SVM WITH AN INTERACTIVE PROCEDURE TO IDENTIFY THE BE...
A BI-OBJECTIVE MODEL FOR SVM WITH AN INTERACTIVE PROCEDURE TO IDENTIFY THE BE...A BI-OBJECTIVE MODEL FOR SVM WITH AN INTERACTIVE PROCEDURE TO IDENTIFY THE BE...
A BI-OBJECTIVE MODEL FOR SVM WITH AN INTERACTIVE PROCEDURE TO IDENTIFY THE BE...
 
A BI-OBJECTIVE MODEL FOR SVM WITH AN INTERACTIVE PROCEDURE TO IDENTIFY THE BE...
A BI-OBJECTIVE MODEL FOR SVM WITH AN INTERACTIVE PROCEDURE TO IDENTIFY THE BE...A BI-OBJECTIVE MODEL FOR SVM WITH AN INTERACTIVE PROCEDURE TO IDENTIFY THE BE...
A BI-OBJECTIVE MODEL FOR SVM WITH AN INTERACTIVE PROCEDURE TO IDENTIFY THE BE...
 
NEW APPROACH FOR SOLVING FUZZY TRIANGULAR ASSIGNMENT BY ROW MINIMA METHOD
NEW APPROACH FOR SOLVING FUZZY TRIANGULAR ASSIGNMENT BY ROW MINIMA METHODNEW APPROACH FOR SOLVING FUZZY TRIANGULAR ASSIGNMENT BY ROW MINIMA METHOD
NEW APPROACH FOR SOLVING FUZZY TRIANGULAR ASSIGNMENT BY ROW MINIMA METHOD
 
A Comparison between FPPSO and B&B Algorithm for Solving Integer Programming ...
A Comparison between FPPSO and B&B Algorithm for Solving Integer Programming ...A Comparison between FPPSO and B&B Algorithm for Solving Integer Programming ...
A Comparison between FPPSO and B&B Algorithm for Solving Integer Programming ...
 
A0280115(1)
A0280115(1)A0280115(1)
A0280115(1)
 
DTB PRESENTATION.pptxdjdjdjdkdjdjjddjdkj
DTB PRESENTATION.pptxdjdjdjdkdjdjjddjdkjDTB PRESENTATION.pptxdjdjdjdkdjdjjddjdkj
DTB PRESENTATION.pptxdjdjdjdkdjdjjddjdkj
 
A Comparative Analysis Of Assignment Problem
A Comparative Analysis Of Assignment ProblemA Comparative Analysis Of Assignment Problem
A Comparative Analysis Of Assignment Problem
 
A COMPREHENSIVE ANALYSIS OF QUANTUM CLUSTERING : FINDING ALL THE POTENTIAL MI...
A COMPREHENSIVE ANALYSIS OF QUANTUM CLUSTERING : FINDING ALL THE POTENTIAL MI...A COMPREHENSIVE ANALYSIS OF QUANTUM CLUSTERING : FINDING ALL THE POTENTIAL MI...
A COMPREHENSIVE ANALYSIS OF QUANTUM CLUSTERING : FINDING ALL THE POTENTIAL MI...
 
Bender’s Decomposition Method for a Large Two-stage Linear Programming Model
Bender’s Decomposition Method for a Large Two-stage Linear Programming ModelBender’s Decomposition Method for a Large Two-stage Linear Programming Model
Bender’s Decomposition Method for a Large Two-stage Linear Programming Model
 
LP linear programming (summary) (5s)
LP linear programming (summary) (5s)LP linear programming (summary) (5s)
LP linear programming (summary) (5s)
 
SOLVING OPTIMAL COMPONENTS ASSIGNMENT PROBLEM FOR A MULTISTATE NETWORK USING ...
SOLVING OPTIMAL COMPONENTS ASSIGNMENT PROBLEM FOR A MULTISTATE NETWORK USING ...SOLVING OPTIMAL COMPONENTS ASSIGNMENT PROBLEM FOR A MULTISTATE NETWORK USING ...
SOLVING OPTIMAL COMPONENTS ASSIGNMENT PROBLEM FOR A MULTISTATE NETWORK USING ...
 
SOLVING OPTIMAL COMPONENTS ASSIGNMENT PROBLEM FOR A MULTISTATE NETWORK USING ...
SOLVING OPTIMAL COMPONENTS ASSIGNMENT PROBLEM FOR A MULTISTATE NETWORK USING ...SOLVING OPTIMAL COMPONENTS ASSIGNMENT PROBLEM FOR A MULTISTATE NETWORK USING ...
SOLVING OPTIMAL COMPONENTS ASSIGNMENT PROBLEM FOR A MULTISTATE NETWORK USING ...
 
A Novel Approach to Mathematical Concepts in Data Mining
A Novel Approach to Mathematical Concepts in Data MiningA Novel Approach to Mathematical Concepts in Data Mining
A Novel Approach to Mathematical Concepts in Data Mining
 
A New Method to Solving Generalized Fuzzy Transportation Problem-Harmonic Mea...
A New Method to Solving Generalized Fuzzy Transportation Problem-Harmonic Mea...A New Method to Solving Generalized Fuzzy Transportation Problem-Harmonic Mea...
A New Method to Solving Generalized Fuzzy Transportation Problem-Harmonic Mea...
 
A HYBRID COA/ε-CONSTRAINT METHOD FOR SOLVING MULTI-OBJECTIVE PROBLEMS
A HYBRID COA/ε-CONSTRAINT METHOD FOR SOLVING MULTI-OBJECTIVE PROBLEMSA HYBRID COA/ε-CONSTRAINT METHOD FOR SOLVING MULTI-OBJECTIVE PROBLEMS
A HYBRID COA/ε-CONSTRAINT METHOD FOR SOLVING MULTI-OBJECTIVE PROBLEMS
 
A HYBRID COA/ε-CONSTRAINT METHOD FOR SOLVING MULTI-OBJECTIVE PROBLEMS
A HYBRID COA/ε-CONSTRAINT METHOD FOR SOLVING MULTI-OBJECTIVE PROBLEMSA HYBRID COA/ε-CONSTRAINT METHOD FOR SOLVING MULTI-OBJECTIVE PROBLEMS
A HYBRID COA/ε-CONSTRAINT METHOD FOR SOLVING MULTI-OBJECTIVE PROBLEMS
 
Efficient Solution of Two-Stage Stochastic Linear Programs Using Interior Poi...
Efficient Solution of Two-Stage Stochastic Linear Programs Using Interior Poi...Efficient Solution of Two-Stage Stochastic Linear Programs Using Interior Poi...
Efficient Solution of Two-Stage Stochastic Linear Programs Using Interior Poi...
 
Application of-computational-intelligence-techniques-for-economic-load-dispatch
Application of-computational-intelligence-techniques-for-economic-load-dispatchApplication of-computational-intelligence-techniques-for-economic-load-dispatch
Application of-computational-intelligence-techniques-for-economic-load-dispatch
 
Optimal Allocation Policy for Fleet Management
Optimal Allocation Policy for Fleet ManagementOptimal Allocation Policy for Fleet Management
Optimal Allocation Policy for Fleet Management
 

More from ijtsrd

‘Six Sigma Technique’ A Journey Through its Implementation
‘Six Sigma Technique’ A Journey Through its Implementation‘Six Sigma Technique’ A Journey Through its Implementation
‘Six Sigma Technique’ A Journey Through its Implementation
ijtsrd
 
Edge Computing in Space Enhancing Data Processing and Communication for Space...
Edge Computing in Space Enhancing Data Processing and Communication for Space...Edge Computing in Space Enhancing Data Processing and Communication for Space...
Edge Computing in Space Enhancing Data Processing and Communication for Space...
ijtsrd
 
Dynamics of Communal Politics in 21st Century India Challenges and Prospects
Dynamics of Communal Politics in 21st Century India Challenges and ProspectsDynamics of Communal Politics in 21st Century India Challenges and Prospects
Dynamics of Communal Politics in 21st Century India Challenges and Prospects
ijtsrd
 
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
ijtsrd
 
The Impact of Digital Media on the Decentralization of Power and the Erosion ...
The Impact of Digital Media on the Decentralization of Power and the Erosion ...The Impact of Digital Media on the Decentralization of Power and the Erosion ...
The Impact of Digital Media on the Decentralization of Power and the Erosion ...
ijtsrd
 
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
ijtsrd
 
Problems and Challenges of Agro Entreprenurship A Study
Problems and Challenges of Agro Entreprenurship A StudyProblems and Challenges of Agro Entreprenurship A Study
Problems and Challenges of Agro Entreprenurship A Study
ijtsrd
 
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
ijtsrd
 
The Impact of Educational Background and Professional Training on Human Right...
The Impact of Educational Background and Professional Training on Human Right...The Impact of Educational Background and Professional Training on Human Right...
The Impact of Educational Background and Professional Training on Human Right...
ijtsrd
 
A Study on the Effective Teaching Learning Process in English Curriculum at t...
A Study on the Effective Teaching Learning Process in English Curriculum at t...A Study on the Effective Teaching Learning Process in English Curriculum at t...
A Study on the Effective Teaching Learning Process in English Curriculum at t...
ijtsrd
 
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
ijtsrd
 
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
ijtsrd
 
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. SadikuSustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
ijtsrd
 
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
ijtsrd
 
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
ijtsrd
 
Activating Geospatial Information for Sudans Sustainable Investment Map
Activating Geospatial Information for Sudans Sustainable Investment MapActivating Geospatial Information for Sudans Sustainable Investment Map
Activating Geospatial Information for Sudans Sustainable Investment Map
ijtsrd
 
Educational Unity Embracing Diversity for a Stronger Society
Educational Unity Embracing Diversity for a Stronger SocietyEducational Unity Embracing Diversity for a Stronger Society
Educational Unity Embracing Diversity for a Stronger Society
ijtsrd
 
Integration of Indian Indigenous Knowledge System in Management Prospects and...
Integration of Indian Indigenous Knowledge System in Management Prospects and...Integration of Indian Indigenous Knowledge System in Management Prospects and...
Integration of Indian Indigenous Knowledge System in Management Prospects and...
ijtsrd
 
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
ijtsrd
 
Streamlining Data Collection eCRF Design and Machine Learning
Streamlining Data Collection eCRF Design and Machine LearningStreamlining Data Collection eCRF Design and Machine Learning
Streamlining Data Collection eCRF Design and Machine Learning
ijtsrd
 

More from ijtsrd (20)

‘Six Sigma Technique’ A Journey Through its Implementation
‘Six Sigma Technique’ A Journey Through its Implementation‘Six Sigma Technique’ A Journey Through its Implementation
‘Six Sigma Technique’ A Journey Through its Implementation
 
Edge Computing in Space Enhancing Data Processing and Communication for Space...
Edge Computing in Space Enhancing Data Processing and Communication for Space...Edge Computing in Space Enhancing Data Processing and Communication for Space...
Edge Computing in Space Enhancing Data Processing and Communication for Space...
 
Dynamics of Communal Politics in 21st Century India Challenges and Prospects
Dynamics of Communal Politics in 21st Century India Challenges and ProspectsDynamics of Communal Politics in 21st Century India Challenges and Prospects
Dynamics of Communal Politics in 21st Century India Challenges and Prospects
 
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
 
The Impact of Digital Media on the Decentralization of Power and the Erosion ...
The Impact of Digital Media on the Decentralization of Power and the Erosion ...The Impact of Digital Media on the Decentralization of Power and the Erosion ...
The Impact of Digital Media on the Decentralization of Power and the Erosion ...
 
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
 
Problems and Challenges of Agro Entreprenurship A Study
Problems and Challenges of Agro Entreprenurship A StudyProblems and Challenges of Agro Entreprenurship A Study
Problems and Challenges of Agro Entreprenurship A Study
 
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
 
The Impact of Educational Background and Professional Training on Human Right...
The Impact of Educational Background and Professional Training on Human Right...The Impact of Educational Background and Professional Training on Human Right...
The Impact of Educational Background and Professional Training on Human Right...
 
A Study on the Effective Teaching Learning Process in English Curriculum at t...
A Study on the Effective Teaching Learning Process in English Curriculum at t...A Study on the Effective Teaching Learning Process in English Curriculum at t...
A Study on the Effective Teaching Learning Process in English Curriculum at t...
 
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
 
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
 
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. SadikuSustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
 
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
 
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
 
Activating Geospatial Information for Sudans Sustainable Investment Map
Activating Geospatial Information for Sudans Sustainable Investment MapActivating Geospatial Information for Sudans Sustainable Investment Map
Activating Geospatial Information for Sudans Sustainable Investment Map
 
Educational Unity Embracing Diversity for a Stronger Society
Educational Unity Embracing Diversity for a Stronger SocietyEducational Unity Embracing Diversity for a Stronger Society
Educational Unity Embracing Diversity for a Stronger Society
 
Integration of Indian Indigenous Knowledge System in Management Prospects and...
Integration of Indian Indigenous Knowledge System in Management Prospects and...Integration of Indian Indigenous Knowledge System in Management Prospects and...
Integration of Indian Indigenous Knowledge System in Management Prospects and...
 
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
 
Streamlining Data Collection eCRF Design and Machine Learning
Streamlining Data Collection eCRF Design and Machine LearningStreamlining Data Collection eCRF Design and Machine Learning
Streamlining Data Collection eCRF Design and Machine Learning
 

Recently uploaded

Guidance_and_Counselling.pdf B.Ed. 4th Semester
Guidance_and_Counselling.pdf B.Ed. 4th SemesterGuidance_and_Counselling.pdf B.Ed. 4th Semester
Guidance_and_Counselling.pdf B.Ed. 4th Semester
Atul Kumar Singh
 
678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf
CarlosHernanMontoyab2
 
"Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe..."Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe...
SACHIN R KONDAGURI
 
How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
Celine George
 
Acetabularia Information For Class 9 .docx
Acetabularia Information For Class 9  .docxAcetabularia Information For Class 9  .docx
Acetabularia Information For Class 9 .docx
vaibhavrinwa19
 
Embracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic ImperativeEmbracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic Imperative
Peter Windle
 
Additional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfAdditional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdf
joachimlavalley1
 
Honest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptxHonest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptx
timhan337
 
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
MysoreMuleSoftMeetup
 
The basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptxThe basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptx
heathfieldcps1
 
Operation Blue Star - Saka Neela Tara
Operation Blue Star   -  Saka Neela TaraOperation Blue Star   -  Saka Neela Tara
Operation Blue Star - Saka Neela Tara
Balvir Singh
 
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXXPhrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
MIRIAMSALINAS13
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
Vivekanand Anglo Vedic Academy
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
Jisc
 
Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
DeeptiGupta154
 
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
Nguyen Thanh Tu Collection
 
Introduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp NetworkIntroduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp Network
TechSoup
 
Francesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptxFrancesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptx
EduSkills OECD
 
special B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdfspecial B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdf
Special education needs
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
siemaillard
 

Recently uploaded (20)

Guidance_and_Counselling.pdf B.Ed. 4th Semester
Guidance_and_Counselling.pdf B.Ed. 4th SemesterGuidance_and_Counselling.pdf B.Ed. 4th Semester
Guidance_and_Counselling.pdf B.Ed. 4th Semester
 
678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf
 
"Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe..."Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe...
 
How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
 
Acetabularia Information For Class 9 .docx
Acetabularia Information For Class 9  .docxAcetabularia Information For Class 9  .docx
Acetabularia Information For Class 9 .docx
 
Embracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic ImperativeEmbracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic Imperative
 
Additional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfAdditional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdf
 
Honest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptxHonest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptx
 
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
 
The basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptxThe basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptx
 
Operation Blue Star - Saka Neela Tara
Operation Blue Star   -  Saka Neela TaraOperation Blue Star   -  Saka Neela Tara
Operation Blue Star - Saka Neela Tara
 
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXXPhrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
 
Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
 
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
 
Introduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp NetworkIntroduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp Network
 
Francesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptxFrancesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptx
 
special B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdfspecial B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdf
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
 

Minimization of Assignment Problems

  • 1. International Journal of Trend in Scientific Research and Development (IJTSRD) Volume 3 Issue 5, August 2019 Available Online: www.ijtsrd.com e-ISSN: 2456 – 6470 @ IJTSRD | Unique Paper ID – IJTSRD26712 | Volume – 3 | Issue – 5 | July - August 2019 Page 1360 Minimization of Assignment Problems Mie Mie Aung1, Yin Yin Cho1, Khin Htay2, Khin Soe Myint1 1Information Technology Supporting and Maintenance Department, Computer University, Meiktila, Myanmar 2Faculty of Information Science, Computer University, Meiktila, Myanmar How to cite this paper: Mie Mie Aung | Yin Yin Cho | Khin Htay | Khin Soe Myint "Minimization of Assignment Problems" Published in International Journal of Trend in Scientific Research and Development (ijtsrd), ISSN: 2456- 6470, Volume-3 | Issue-5, August 2019, pp.1360-1362, https://doi.org/10.31142/ijtsrd26712 Copyright © 2019 by author(s) and International Journal ofTrend inScientific Research and Development Journal. This is an Open Access article distributed under the terms of the Creative Commons Attribution License (CC BY 4.0) (http://creativecommons.org/licenses/by /4.0) ABSTRACT The assignment problem is a special type of linear programming problemand it is sub-class of transportation problem. Assignment problems are defined with two sets of inputs i.e. set of resources and set of demands. Hungarian algorithm is able to solve assignment problems with precisely defined demands and resources. Nowadays, many organizations and competition companies considermarkets of their products. They use many salespersons to improve their organizations marketing. Salespersons travel form one city to another cityfortheirmarkets. There are some problems in travelling which salespeopleshould gowhichcity in minimum cost. So, travelling assignment problem is a main process for many business functions. KEYWORDS: Assignment Problem, HungarianAlgorithm, OptimizationResearch, Transportation Problem, Optimal Solution 1. INTRODUCTION The assignment problem is a special case of the transportation problem in Operation Research (OR). It arises in a variety of decision-making situations. Exactly one resource has to be assigned to each of the demands and each of the resources can be chosen at most once. We can calculate the cost function of a specific assignment as the sum of all costs in the assignmentmade.Appropriate resource from the set of resources available has to be assigned to each of the demands in the way that the cost of the whole assignment is minimal. Optimality is achieved when an assignment with a minimal value of cost function is found (i.e. no other assignment with lower cost exists) [6]. There are several methods of solving the assignment problem such as A. Enumeration method B. Transportation model C. Hungarian method D. The Alternate method One of the more famous and effective solving methods is the "Hungarian Method". This algorithm is only able to solve exactly defined assignment problems, where each demand and each resource is described with exactly defined properties. The Hungarian algorithm is an algorithm for solving a matchingproblemormoregenerallyanassignment linear programming problem. 2. RELATED WORKS In [7], the paper simplifies the algorithm of searchingforthe even alternating path that contains a maximal elementusing the minimal weighted k-matching theorem and intercept graph. The authors in [3] propose a new mechanism for combinatorial assignment for example, assigning schedules of courses to students based on an approximation to competitive equilibrium fromequal incomes (CEEI)inwhich incomes are unequal but arbitrarily close together. The Hungarian algorithm was extended withfuzzylogicmethods in order to be able to solve vaguely defined assignment problems without their exact formalization in [5]. This research in [7] is aimed at developinga systemwith which to assess the abilities of baseball players in all practical aspects of the sport and compose a team in which all the players are assigned to positions such that the collective team skill is maximized for a specific goal page title section. In [2], the concept of assignment problem was applied to solve a problem for a Legal Firm A in Kumasi which had a difficulty in assigning nine different cases to its nine junior lawyers. Based on the data collected, Management Scientist Version 5 Software which uses Hungarian Method was used to solve the problem. Optimal assignments ofthecases to the junior lawyers were obtained for the Legal Firm. 3. THEORETICAL BACKGROUND Major Combinatorial optimization is a subset of mathematical optimization that is related to operations research, algorithm theory, and computational complexity theory. 3.1 SOME PROBLEMS IN COMBINATORIAL OPTIMIZATION Some scheduling problems can be solved efficiently by reducing the problems to well-known combinatorial optimization problems, such as linear programs, maximum flow problems, or transportation problems [1]. In this section, we will give a brief survey of these combinatorial optimization problems. 3.1.1. LINEAR AND INTEGER PROGRAMMING A linear program is an optimization problem of the form in equation (1). IJTSRD26712
  • 2. International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470 @ IJTSRD | Unique Paper ID – IJTSRD26712 | Volume – 3 | Issue – 5 | July - August 2019 Page 1361 Minimizez(x) = 𝑐 𝑥 + ⋯ + 𝑐 𝑥 (1) Subject to 𝑐 𝑥 + ⋯ + 𝑐 𝑥 ≥ 𝑏 . 𝑐 𝑥 + ⋯ + 𝑐 𝑥 ≥ 𝑏 𝑥 ≥ 0 for i =1, ……, n. The most popular method for solving linear programs is the simplex algorithm. It is an iterativeprocedurewhichfinds an optimal solution or detects infeasibility or unboundedness after a finite number of steps. Although the number of iteration steps may be exponential, the simplex algorithm is very efficient in practice. 3.1.2. TRANSSHIPMENT PROBLEMS The transshipment problem is a special linear program. A transshipment problem is given by Minimize ∑ 𝑐 𝑥( , )∈ (2) Subject to ∑ 𝑥( , )∈ _ ∑ 𝑥( , )∈ = 𝑏 for all i ∈ V 𝑙 ≤ 𝑥 ≤ 𝑢 for all ( i , j) ∈ A. . Standard algorithms for the transshipment problem are the network simplex method and the out-of-kilter algorithm, which was developed independently by Yakovleva, Minty, and Fulkerson. Both methods have the property of calculating an integral flow if all finite bi, lij , and uij are integers. 3.1.3. THE MAXIMUM FLOW PROBLEM For this problem, we have the linear programming formulation Maximize u (3) Subject to ∑ 𝑥( , )∈ − ∑ 𝑥( , )∈ = −𝑣 𝑓𝑜𝑟 𝑖 = 𝑠 𝑣 𝑓𝑜𝑟 𝑖 = 𝑠 0 𝑜𝑡ℎ𝑒𝑟𝑤𝑖𝑠𝑒   0≤ 𝑥 ≤ 𝑢 for ( i, j ) . The maximum flow problem may be interpreted as a transshipment problem with exactly onesupply vertexs and exactly one demand vertext, and variablesupply (demand)v which should be as large as possible. 3.1.4. BIPARTITE MATCHING PROBLEMS Consider a bipartite graph, i.e. a graph G = (V, A) where the vertex set V is the union of two disjoint sets V1 and V2, and arcs A ⊆ V1×V2. A matching is a set M ⊆ A of arcs such that no two arcs in M have a common vertex. The problem is to find a matching M with maximal cardinality. The maximum cardinality bipartite matching problem may be reduced to a maximum flow. 3.1.5. THE ASSIGNMENT PROBLEM The assignment problem is to find an assignment that is minimized. We may represent the assignment problem by the n×m-matrix C = (cij) and formulateitas a linearprogram: Minimize ∑ ∑ 𝑐 𝑥 (4)Subjectto ∑ 𝑥 = 1i=1,…., n ∑ 𝑥 ≤ 1 j = 1 , …. , m 𝑥 ∈ {0,1} 𝑖 = 1 , … . , 𝑛; 𝑗 = 1 , … . , 𝑚. The first algorithm for the assignment problem was the Hungarian method introduced by Kuhn. It solves the assignment problem in O(n2m) steps by exploiting its special structure. 4. SOLVING METHOD FOR ASSIGNMENT PROBLEMS Hungarian method is used to find theproperassignmentand this method is dependent upon two vital theorems, state below. Theorem 1: If a constant is added (or subtracted) to every element of any row (or column) of the cost matrix [cij] in an assignment problem then an assignment which minimizes the total cost for the new matrix will also minimize the total cost matrix. Theorem 2: If all cij ≥ 0 and there exists a solution x = x such that ∑ c x = 0 then this solution is an optimal solution, i.e., minimizes z. 4.1 THE HUNGARIAN ALGORITHM The Hungarian method is a combinatorial optimization algorithm that solves the assignment probleminpolynomial time. This method was developed and published by Harold Kuhn, who gave the name “Hungarian method” because the algorithm was largely based on the earlier works of two Hungarian mathematicians: Denes K nig and Jan Egervary. In order to use this method, one needs to know only the cost of making all the possible assignments. Each assignment problem has a matrix (table) associated with it. It may be noted that the assignment problem is a variation of the transportation problem with two characteristics: A. The cost matrix is a square matrix B. The optimum solution for the problem would be such that there would be such that there would be only one assignment in a row or column of the cost matrix. This method works on the principle of reducing the given cost matrix to a matrix of opportunity cost. Opportunitycost here shows the relative penalties associated with assigning resource to an activity as opposed tomakingthebestorleast assignment. The following algorithm applies the above theorem to a given n × n cost matrix to find an optimal assignment. Step1. Transfer the cost matrix to square matrix. Step2. Subtract the minimal element of each row from all elements in the same row. Step3. Subtract the minimal element of each column from all elements in the same column. Step4. Select rows and columns across which you draw lines, in a way that all the zeros arecoveredand that number of lines is minimal. Step5. Find a minimal element that is not covered by any line. Add its value to each element covered by both lines and subtract it from each element that is not covered by any line .Go back to step 4. If nothing was done in step 5, go to step 6. Step6. Assign resources to demands starting in the top row. Assign a resource only when there is only one zero in a row. As you make an assignment delete a row and a column from which you have made it. If there is no such assignment possible, move to the next row. Stop when all assignments have been made. If you reached the bottom of the matrix, proceed to next step.
  • 3. International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470 @ IJTSRD | Unique Paper ID – IJTSRD26712 | Volume – 3 | Issue – 5 | July - August 2019 Page 1362 Step7. Assign resources to demands starting in the leftmost column. Assign a resource onlywhenthere is only one zero in a row. As you make an assignment delete a row and a column from which you have made it. If there is no such assignment possible, move to the next column. Stop when all assignments have been made. If no assignments were made in this step, choose a random zero value and make an assignment. Proceed to step 6. 5. EXPERIMENTAL RESULT For a company, currently have five salespeople on road- meeting buyers. Salespeople are in Shanghai; Mumbai; Taipei; Osaka and Yangon. In order to fly to five other cities: Tokyo; Hong Kong; Beijing; Delhi and Bangkok.Theproblem now is which salespeople should be assign to which city to minimize the total cost of transportation. The table 1 shows the cost of airplane tickets in dollars between these cities. The problem is to find the minimum cost matchingofperson to city. Where should we send each salesperson in order to minimize airfare? Table1 Cost Matrix of Assignment Problem Dest: Dept: Tokyo Hong Kong Beijing Delhi Bangkok Shanghai 155 150 99 216 229 Mumbai 188 179 110 86 147 Taipei 144 124 99 253 266 Osaka 99 135 177 224 266 Yangon 131 130 184 230 221 Hungarian algorithmcanbe solvingthis assignment problem of transportation. It can solve the best possible assignment with minimum cost. The proper results areshowninTable2. Experiment results of this assignment problemareshownin Table 3. Table2 Proper Results of Assignment Problem Dest: Dept: Tokyo Hong Kong Beijing Delhi Bangkok Shanghai 155 150 99 216 229 Mumbai 188 179 110 86 147 Taipei 144 124 99 253 266 Osaka 99 135 177 224 266 Yangon 131 130 184 230 221 Table2 Experiment Results of Assignment Problem Shanghai  Beijing 99 Mumbai  Delhi 86 Taipei  Hong Kong 124 Osaka  Tokyo 99 Yangon  Bangkok 221 Total cost 629 6. CONCLUSION AND FURTHER EXTENSION This paper presented the most popular method for solving assignment problem.AHungarianAlgorithm was introduced for solving minimization problems. The Hungarian Algorithm has systematic procedure and very easy to understand. From this paper, it can be concluded that this algorithm provides an optimal solution directly in few steps for the minimization assignment problem. As this algorithm consumes less time and easier to understand and apply so it can be really helpful for decision makers. This algorithm helps decision maker to minimize thecosts oftransportation by finding an optimum solution for transportation routes. In future work, we will apply this algorithm to various transportation-related problems. 7. REFERENCES [1] Dr. Peter Brucker, Scheduling Algorithms. Springer Berlin Heidelberg New York [2] Douglas Kwasi Boah, Isaac Kwasi Adu and Francis Julius Gyebil, Assignment Problem in Legal Firm in Kumasi, Ghana,Vol.2,2015, no.1,1- 5 HIKARI Ltd,www.m-hikari.com, http://dx.doi.org/10.12988/ ijco.2015.41226 [3] Eric Budish “The Combinatorial Assignment Problem: Approximate Competitive Equilibrium from Equal Incomes” Journal of Political Economy, 2011, vol. 119, no. 6MIHA MOˇSKON, Finding optimal solutions of vaguely defined assignment problems. ISBN: 978-960- 474-281-3 [4] MIHA MOˇSKON” Finding optimal solutions of vaguely defined assignment problems” Recent Researches in Applied Computer and Applied Computational Science ISBN: 978-960-474-281-3 [5] Miha Moškon (2011) Solving The Vaguely Defined Assignment Problems. INTERNATIONAL JOURNAL OF MATHEMATICAL MODELSANDMETHODSIN APPLIED SCIENCES, Issue 4, Volume 5. [6] Peter Karich “Optimizing Educational Schedules Using Hungarian Algorithm and Iterated Local Search” [7] S. S. Britz and M. J. von “Application of the Hungarian Algorithm in Baseball Team Selectionand Assignment”