forked from doocs/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution.cpp
27 lines (27 loc) · 812 Bytes
/
Solution.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
class Solution {
public:
int maxmiumScore(vector<int>& cards, int cnt) {
sort(cards.begin(), cards.end());
reverse(cards.begin(), cards.end());
int ans = 0, n = cards.size();
for (int i = 0; i < cnt; ++i) ans += cards[i];
if (ans % 2 == 0) return ans;
int inf = 0x3f3f3f3f;
int a = inf, b = inf, c = -inf, d = -inf;
for (int i = 0; i < cnt; ++i) {
int v = cards[i];
if (v % 2 == 1)
a = min(a, v);
else
b = min(b, v);
}
for (int i = cnt; i < n; ++i) {
int v = cards[i];
if (v % 2 == 0)
c = max(c, v);
else
d = max(d, v);
}
return max(0, max(ans - a + c, ans - b + d));
}
};