I have a problem where I have to pair workers to perform task. This means that each pair p-q can only perform a task t. I have to optimally find for each task t, which pair can best perform the task optimally for assignment.
How can I convert this problem to a matrix that I can solve using the Hungarian algorithm because obviously this cannot be a nxn matrix that is easily solved by the algorithm. Or is there an algorithm that I can use for such a case?
So I need to find an optimal assingment for each group of users to each task.
– leutsoa moteka Aug 20 '18 at 09:45How do I apply the Hungarian Algorithm such that I find optimal matching of pairs to tasks. Remember:
................p1 can either be matched with (q1,q2 . . .) for task t1 also..................... p2 can either be matched with (q1,q2 . . .) for task t1 ...............p3 can either be matched with (q1,q2 . . .) for task t1
BUUUT If p1__q2 matching is optimal for t1, then p1__q1 is no longer relevant.
– leutsoa moteka Aug 21 '18 at 08:53