Build groups of two out of a list of people with rating

60 Views Asked by At

I got a list of people and a rating of how good this combination is. I need to maximize the rating. I've already looked at the hungarian algorithm, but it solves a slightly different problem. How can you solve such a problem?

1

There are 1 best solutions below

0
On BEST ANSWER

The hungarian algorithm solves a different problem.

You need the maximum weight matching algorithm for general graphs.

If your graph is small, do a simple (combinatorial) exhaustive search, otherwise implement one of the more complicated algorithms.