304. Assignment Problem

The special case of the transportation problem where agents are assigned to tasks one-to-one.

304.1. Formulation

Cost to assign agent to task . Decision variable .

s.t.:

304.2. LP relaxation gives integer solution

Constraint matrix is totally unimodular → LP relaxation has integer optimum. Can drop the binary constraint and solve as an LP; equivalently use the Hungarian algorithm in .

304.3. Applications

304.4. Generalizations

304.5. See also