「力扣挑战赛」心算项目的挑战比赛中,要求选手从 N
张卡牌中选出 cnt
张卡牌,若这 cnt
张卡牌数字总和为偶数,则选手成绩「有效」且得分为 cnt
张卡牌数字总和。 给定数组 cards
和 cnt
,其中 cards[i]
表示第 i
张卡牌上的数字。 请帮参赛选手计算最大的有效得分。若不存在获取有效得分的卡牌方案,则返回 0。
示例 1:
输入:
cards = [1,2,8,9], cnt = 3
输出:
18
解释:选择数字为 1、8、9 的这三张卡牌,此时可获得最大的有效得分 1+8+9=18。
示例 2:
输入:
cards = [3,3,1], cnt = 1
输出:
0
解释:不存在获取有效得分的卡牌方案。
提示:
1 <= cnt <= cards.length <= 10^5
1 <= cards[i] <= 1000
-
public class Solution { public int MaxmiumScore(int[] cards, int cnt) { Array.Sort(cards); int res = 0; int index = cards.Length - 1; while(cnt>0){ res += cards[index--]; cnt--; } if(res % 2 == 0) return res; for(int i = index;i>=0;i--){ for(int j = index + 1;j<cards.Length;j++){ res -= cards[j]; res += cards[i]; if(res % 2 == 0) return res; res -= cards[i]; res += cards[j]; } } return 0; } }