Rahul Sharma (Editor)

Generalized assignment problem

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

In applied mathematics, the maximum generalized assignment problem is a problem in combinatorial optimization. This problem is a generalization of the assignment problem in which both tasks and agents have a size. Moreover, the size of each task might vary from one agent to the other.

Contents

This problem in its most general form 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 tasks assigned to it cannot exceed this budget. It is required to find an assignment in which all agents do not exceed their budget and total profit of the assignment is maximized.

In 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 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 problem.

Explanation of definition

In the following, we have n kinds of items, a 1 through a n and m kinds of bins b 1 through b m . Each bin b i is associated with a budget t i . For a bin b i , each item a j has a profit p i j and a weight w i j . A solution is an assignment from items to bins. A feasible solution is a solution in which for each bin b i the total weight of assigned items is at most t i . The solution's profit is the sum of profits for each item-bin assignment. The goal is to find a maximum profit feasible solution.

Mathematically the generalized assignment problem can be formulated as an integer program:

maximize i = 1 m j = 1 n p i j x i j . subject to j = 1 n w i j x i j t i i = 1 , , m ; i = 1 m x i j = 1 j = 1 , , n ; x i j { 0 , 1 } i = 1 , , m , j = 1 , , n ;

Complexity

The generalized assignment problem is NP-hard, and it is even APX-hard to approximate it. Recently it was shown that an extension of it is e / ( e 1 ) ε hard to approximate for every ε .

Greedy approximation algorithm

Using any α -approximation algorithm ALG for the knapsack problem, it is possible to construct a ( α + 1 )-approximation for the generalized assignment problem in a greedy manner using a residual profit concept. The algorithm constructs a schedule in iterations, where during iteration j a tentative selection of items to bin b j is selected. The selection for bin b j might change as items might be reselected in a later iteration for other bins. The residual profit of an item x i for bin b j is p i j if x i is not selected for any other bin or p i j p i k if x i is selected for bin b k .

Formally: We use a vector T to indicate the tentative schedule during the algorithm. Specifically, T [ i ] = j means the item x i is scheduled on bin b j and T [ i ] = 1 means that item x i is not scheduled. The residual profit in iteration j is denoted by P j , where P j [ i ] = p i j if item x i is not scheduled (i.e. T [ i ] = 1 ) and P j [ i ] = p i j p i k if item x i is scheduled on bin b k (i.e. T [ i ] = k ).

Formally:

Set T [ i ] = 1 for all i = 1 n For j = 1... m do: Call ALG to find a solution to bin b j using the residual profit function P j . Denote the selected items by S j . Update T using S j , i.e., T [ i ] = j for all i S j .

References

Generalized assignment problem Wikipedia


Similar Topics