CF1572D.Bridge Club
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
There are currently n hot topics numbered from 0 to n−1 at your local bridge club and 2n players numbered from 0 to 2n−1 . Each player holds a different set of views on those n topics, more specifically, the i -th player holds a positive view on the j -th topic if i & 2j>0 , and a negative view otherwise. Here & denotes the bitwise AND operation.
You are going to organize a bridge tournament capable of accommodating at most k pairs of players (bridge is played in teams of two people). You can select teams arbitrarily while each player is in at most one team, but there is one catch: two players cannot be in the same pair if they disagree on 2 or more of those n topics, as they would argue too much during the play.
You know that the i -th player will pay you ai dollars if they play in this tournament. Compute the maximum amount of money that you can earn if you pair the players in your club optimally.
输入格式
The first line contains two integers n , k ( 1≤n≤20 , 1≤k≤200 ) — the number of hot topics and the number of pairs of players that your tournament can accommodate.
The second line contains 2n integers a0,a1,…,a2n−1 ( 0≤ai≤106 ) — the amounts of money that the players will pay to play in the tournament.
输出格式
Print one integer: the maximum amount of money that you can earn if you pair the players in your club optimally under the above conditions.
输入输出样例
输入#1
3 1 8 3 5 7 1 10 3 2
输出#1
13
输入#2
2 3 7 4 5 7
输出#2
23
输入#3
3 2 1 9 1 5 7 8 1 1
输出#3
29
说明/提示
In the first example, the best we can do is to pair together the 0 -th player and the 2 -nd player resulting in earnings of 8+5=13 dollars. Although pairing the 0 -th player with the 5 -th player would give us 8+10=18 dollars, we cannot do this because those two players disagree on 2 of the 3 hot topics.
In the second example, we can pair the 0 -th player with the 1 -st player and pair the 2 -nd player with the 3 -rd player resulting in earnings of 7+4+5+7=23 dollars.