Problem C
Graduation Table
You have been asked to organize the computing science
graduation banquet. There are
While there is no official way to request seating arrangements, these pairs have come to you privately and offered you a bribe if you fulfill their request. You care about your integrity, but you also care about money, so you will only accept bribes if you can fulfill the pair’s request. You wish to maximize the amount of money you can earn by accepting the most profitable set of bribes.
Input
The first line of input contains two integers
It is guaranteed that any pair will submit at most one request to sit with each other, and each individual attendee will appear in at most two requests.
Output
Output the maximum number of dollars you can make over all possible seating arrangements.
Sample Input 1 | Sample Output 1 |
---|---|
3 3 1 2 1 2 3 2 1 3 3 |
6 |
Sample Input 2 | Sample Output 2 |
---|---|
5 4 1 2 1 2 3 2 1 3 3 4 5 4 |
9 |