Content deleted Content added
Rewrite layman's intro. Rest of article to follow. |
Examples of expanding the problem, and clarify the notes on superclasses of problems |
||
Line 3:
The cost of an assignment is determined from a ''cost function'', which gives the cost of assigning a particular agent to a particular task. The overall cost of the assignment is then equal to the sum of the costs for each agent (or the sum of the costs for each task, which is the same thing).
For example, suppose that a taxi firm has three taxis (the agents) available, and three customers (the tasks) wishing to be picked up at the same time. Then for each taxi, the cost of picking up a particular customer will depend on how far the taxi must drive to reach the pickup point (or alternatively, if the firm prides itself on speedy pickups, on the time which the drive will take). The solution to the assignment problem will be whichever combination of taxis and customers results in the least total driving.
However, the assignment problem can be made rather more flexible than it at first appers. In the above example, suppose that there are four taxis available, but still only three customers. Then a fourth task can be invented, perhaps called "sitting still doing nothing", with a cost of 0 for the taxi assigned to it. The assignment problem can then be solved in the usual way and still give the best solution to the problem.
The assignment problem is a special case of another optimization problem known as the '''transportation problem''', which in turn is a special case of a problem known as '''maximal flow problem''', which in turn is a special case of a [[linear program]]. While it is possible to solve all these problems with the '''simplex algorithm''', each of these problems has more efficient algorithms designed to take advantage of their special structure. It is know that an algorithm exists to solve the assignment problem within time bounded by a polynomial expression of the number of assignees.▼
Similar tricks can be played in order to allow more tasks than agents, tasks to which multiple agents must be assigned (for instance, a group of more customers than will fit in one taxi), or maximizing profit rather than minimizing cost.
▲The assignment problem is a special case of another optimization problem known as the
A problem may be classified as an 'assignment problem' if the nature of the problem is such that there exist 2 sets of data, each with identical numbers of elements. Then there exists some function C, that provides the cost of assigning one of the 'A' elements, to one of the 'B' elements in a one-to-one manner.
|