I want to compute a one-to-one assignment, from A to B where A and B have n elements. Each element of A will be assigned to one element in B. There is an associated cost between each element of A and B. The goal is to minimize the maximum cost of the assignment.
How to compute such an assignment using the cost matrix? I need to select an element from each row/column such that minimax strategy is achieved.
I was able to achieve this by listing all possible assignments and calculating their maximum costs and then selecting the one with the least maximum cost, but I wonder if there's a better approach.
The easiest is probably as a MIP (Mixed-Integer Programming) model:
This can be solved with any MIP solver.