Generalized assignment problem: Difference between revisions
LiranKatzir (talk | contribs) |
LiranKatzir (talk | contribs) |
||
Line 21: | Line 21: | ||
== References == |
== References == |
||
* [www.cs.technion.ac.il/~lirank/pubs/Generalized-Assignment-Problem.pdf '''An Efficient Approximation for the Generalized Assignment Problem'''], Cohen, Katzir, and Raz, 2006. |
* [http://www.cs.technion.ac.il/~lirank/pubs/Generalized-Assignment-Problem.pdf '''An Efficient Approximation for the Generalized Assignment Problem'''], Cohen, Katzir, and Raz, 2006. |
||
* [www-math.mit.edu/~goemans/ga-soda06.pdf '''Tight Approximation Algorithms for Maximum General Assignment Problems'''], |
* [http://www-math.mit.edu/~goemans/ga-soda06.pdf '''Tight Approximation Algorithms for Maximum General Assignment Problems'''], |
||
Fleischer, Goemans, Mirrokni, and Sviridenko, 2006. |
Fleischer, Goemans, Mirrokni, and Sviridenko, 2006. |
||
Revision as of 13:36, 26 January 2007
The maximum general assignment problem is a problem in combinatorial optimization. This problem is a generalization of the assignment problem in which both task and agents have a size. Moreover, this size of each task might vary from one agent to the other. This problem
In its most general form, the problem is as follows:
There are a number of agents and a number of tasks. Any agent can be assigned to perform any task, incurring some cost and profit that may vary depending on the agent-task assignment. Moreover, each agent has a budget and the sum of the costs of task assigned to it cannot exceed this budget. It is required to find an assignment in which an agent does not exceed its budget and total profit of the assignment is maximized.
Special cases
In the special case in which all the agents' budgets and all tasks' costs are equal to 1, this problem reduces to the maximum assignment problem. When the costs and profits of all agents-task assignment are equal, this problem reduces to the multiple knapsack problem. If there is a single agent, then, this problem reduces to the knapsack problemKnapsack problem.
Definition
In the following, we have n kinds of items, through and m kinds of bins through . Each bin is associated with a budget . Each item has a value and a weight . A solution is selection of items subset U and an assignment from U to the bins. A feasible solution is a solution in which for each bin the weights sum of assigned items is at most . The solution's profit is the sum of profits for each item-bin assignment. The goal is to find a maximum profit feasible solution.
The generalized assignment problem is NP-hard, and it is even APX-hard to approximation. Recently it was shown that it is () hard to approximate for every .
Using any -approximation algorithm for the knapsack problem, it is possible to construct a ()-approximation for the generalized assignment problem in a greedy manner using a residual profit concept. The residual profit of an item for bin is is is not selected for any other bin or – if is selected for bin .
Formally:
- For do:
- find the optimal solution to bin using the residual profit function.
References
- An Efficient Approximation for the Generalized Assignment Problem, Cohen, Katzir, and Raz, 2006.
Fleischer, Goemans, Mirrokni, and Sviridenko, 2006.