|
32 | 32 |
|
33 | 33 | <!-- 这里可写通用的实现逻辑 -->
|
34 | 34 |
|
| 35 | +**方法一:排序 + 贪心** |
| 36 | + |
| 37 | +排序先取最大的 $cnt$ 个数,如果和为偶数则直接返回答案。 |
| 38 | + |
| 39 | +否则,找一个已取的最小奇数换成剩余未取的最大偶数,或者找一个已取的最小偶数换成剩下未取的最大奇数,取两者中较大的。 |
| 40 | + |
| 41 | +时间复杂度 $O(nlogn)$。 |
| 42 | + |
35 | 43 | <!-- tabs:start -->
|
36 | 44 |
|
37 | 45 | ### **Python3**
|
38 | 46 |
|
39 | 47 | <!-- 这里可写当前语言的特殊实现逻辑 -->
|
40 | 48 |
|
41 | 49 | ```python
|
42 |
| - |
| 50 | +class Solution: |
| 51 | + def maxmiumScore(self, cards: List[int], cnt: int) -> int: |
| 52 | + cards.sort(reverse=True) |
| 53 | + t = cards[:cnt] |
| 54 | + ans = sum(t) |
| 55 | + if ans % 2 == 0: |
| 56 | + return ans |
| 57 | + a = min([v for v in t if v & 1], default=inf) |
| 58 | + b = min([v for v in t if v % 2 == 0], default=inf) |
| 59 | + c = max([v for v in cards[cnt:] if v % 2 == 0], default=-inf) |
| 60 | + d = max([v for v in cards[cnt:] if v & 1], default=-inf) |
| 61 | + return max(ans - a + c, ans - b + d, 0) |
43 | 62 | ```
|
44 | 63 |
|
45 | 64 | ### **Java**
|
46 | 65 |
|
47 | 66 | <!-- 这里可写当前语言的特殊实现逻辑 -->
|
48 | 67 |
|
49 | 68 | ```java
|
| 69 | +class Solution { |
| 70 | + public int maxmiumScore(int[] cards, int cnt) { |
| 71 | + Arrays.sort(cards); |
| 72 | + int ans = 0; |
| 73 | + int n = cards.length; |
| 74 | + for (int i = 0; i < cnt; ++i) { |
| 75 | + ans += cards[n - i - 1]; |
| 76 | + } |
| 77 | + if (ans % 2 == 0) { |
| 78 | + return ans; |
| 79 | + } |
| 80 | + int inf = 0x3f3f3f3f; |
| 81 | + int a = inf, b = inf; |
| 82 | + for (int i = 0; i < cnt; ++i) { |
| 83 | + int v = cards[n - i - 1]; |
| 84 | + if (v % 2 == 1) { |
| 85 | + a = Math.min(a, v); |
| 86 | + } else { |
| 87 | + b = Math.min(b, v); |
| 88 | + } |
| 89 | + } |
| 90 | + int c = -inf, d = -inf; |
| 91 | + for (int i = cnt; i < n; ++i) { |
| 92 | + int v = cards[n - i - 1]; |
| 93 | + if (v % 2 == 0) { |
| 94 | + c = Math.max(c, v); |
| 95 | + } else { |
| 96 | + d = Math.max(d, v); |
| 97 | + } |
| 98 | + } |
| 99 | + return Math.max(0, Math.max(ans - a + c, ans - b + d)); |
| 100 | + } |
| 101 | +} |
| 102 | +``` |
| 103 | + |
| 104 | +### **C++** |
| 105 | + |
| 106 | +```cpp |
| 107 | +class Solution { |
| 108 | +public: |
| 109 | + int maxmiumScore(vector<int>& cards, int cnt) { |
| 110 | + sort(cards.begin(), cards.end()); |
| 111 | + reverse(cards.begin(), cards.end()); |
| 112 | + int ans = 0, n = cards.size(); |
| 113 | + for (int i = 0; i < cnt; ++i) ans += cards[i]; |
| 114 | + if (ans % 2 == 0) return ans; |
| 115 | + int inf = 0x3f3f3f3f; |
| 116 | + int a = inf, b = inf, c = -inf, d = -inf; |
| 117 | + for (int i = 0; i < cnt; ++i) |
| 118 | + { |
| 119 | + int v = cards[i]; |
| 120 | + if (v % 2 == 1) a = min(a, v); |
| 121 | + else b = min(b, v); |
| 122 | + } |
| 123 | + for (int i = cnt; i < n; ++i) |
| 124 | + { |
| 125 | + int v = cards[i]; |
| 126 | + if (v % 2 == 0) c = max(c, v); |
| 127 | + else d = max(d, v); |
| 128 | + } |
| 129 | + return max(0, max(ans - a + c, ans - b + d)); |
| 130 | + } |
| 131 | +}; |
| 132 | +``` |
50 | 133 |
|
| 134 | +### **Go** |
| 135 | +
|
| 136 | +```go |
| 137 | +func maxmiumScore(cards []int, cnt int) int { |
| 138 | + ans := 0 |
| 139 | + sort.Slice(cards, func(i, j int) bool { return cards[i] > cards[j] }) |
| 140 | + for _, v := range cards[:cnt] { |
| 141 | + ans += v |
| 142 | + } |
| 143 | + if ans%2 == 0 { |
| 144 | + return ans |
| 145 | + } |
| 146 | + inf := 0x3f3f3f3f |
| 147 | + a, b, c, d := inf, inf, -inf, -inf |
| 148 | + for _, v := range cards[:cnt] { |
| 149 | + if v%2 == 1 { |
| 150 | + a = min(a, v) |
| 151 | + } else { |
| 152 | + b = min(b, v) |
| 153 | + } |
| 154 | + } |
| 155 | + for _, v := range cards[cnt:] { |
| 156 | + if v%2 == 0 { |
| 157 | + c = max(c, v) |
| 158 | + } else { |
| 159 | + d = max(d, v) |
| 160 | + } |
| 161 | + } |
| 162 | + return max(0, max(ans-a+c, ans-b+d)) |
| 163 | +} |
| 164 | +
|
| 165 | +func max(a, b int) int { |
| 166 | + if a > b { |
| 167 | + return a |
| 168 | + } |
| 169 | + return b |
| 170 | +} |
| 171 | +
|
| 172 | +func min(a, b int) int { |
| 173 | + if a < b { |
| 174 | + return a |
| 175 | + } |
| 176 | + return b |
| 177 | +} |
51 | 178 | ```
|
52 | 179 |
|
53 | 180 | ### **...**
|
|
0 commit comments