Description#
You are given a positive integer num
. You may swap any two digits of num
that have the same parity (i.e. both odd digits or both even digits).
Return the largest possible value of num
after any number of swaps.
Example 1:
Input: num = 1234
Output: 3412
Explanation: Swap the digit 3 with the digit 1, this results in the number 3214.
Swap the digit 2 with the digit 4, this results in the number 3412.
Note that there may be other sequences of swaps but it can be shown that 3412 is the largest possible number.
Also note that we may not swap the digit 4 with the digit 1 since they are of different parities.
Example 2:
Input: num = 65875
Output: 87655
Explanation: Swap the digit 8 with the digit 6, this results in the number 85675.
Swap the first digit 5 with the digit 7, this results in the number 87655.
Note that there may be other sequences of swaps but it can be shown that 87655 is the largest possible number.
Constraints:
Solutions#
Solution 1#
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| class Solution:
def largestInteger(self, num: int) -> int:
cnt = Counter()
x = num
while x:
x, v = divmod(x, 10)
cnt[v] += 1
x = num
ans = 0
t = 1
while x:
x, v = divmod(x, 10)
for y in range(10):
if ((v ^ y) & 1) == 0 and cnt[y]:
ans += y * t
t *= 10
cnt[y] -= 1
break
return ans
|
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
| class Solution {
public int largestInteger(int num) {
int[] cnt = new int[10];
int x = num;
while (x != 0) {
cnt[x % 10]++;
x /= 10;
}
x = num;
int ans = 0;
int t = 1;
while (x != 0) {
int v = x % 10;
x /= 10;
for (int y = 0; y < 10; ++y) {
if (((v ^ y) & 1) == 0 && cnt[y] > 0) {
cnt[y]--;
ans += y * t;
t *= 10;
break;
}
}
}
return ans;
}
}
|
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 largestInteger(int num) {
vector<int> cnt(10);
int x = num;
while (x) {
cnt[x % 10]++;
x /= 10;
}
x = num;
int ans = 0;
long t = 1;
while (x) {
int v = x % 10;
x /= 10;
for (int y = 0; y < 10; ++y) {
if (((v ^ y) & 1) == 0 && cnt[y] > 0) {
cnt[y]--;
ans += y * t;
t *= 10;
break;
}
}
}
return ans;
}
};
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| func largestInteger(num int) int {
cnt := make([]int, 10)
x := num
for x != 0 {
cnt[x%10]++
x /= 10
}
x = num
ans, t := 0, 1
for x != 0 {
v := x % 10
x /= 10
for y := 0; y < 10; y++ {
if ((v^y)&1) == 0 && cnt[y] > 0 {
cnt[y]--
ans += y * t
t *= 10
break
}
}
}
return ans
}
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| function largestInteger(num: number): number {
let arrs = String(num).split('').map(Number);
let odds = []; // 奇数
let evens = [];
for (let i of arrs) {
if ((i & 1) == 1) {
odds.push(i);
} else {
evens.push(i);
}
}
odds.sort((a, b) => a - b);
evens.sort((a, b) => a - b);
let ans = [];
for (let i of arrs) {
ans.push((i & 1) == 1 ? odds.pop() : evens.pop());
}
return Number(ans.join(''));
}
|