返回介绍

solution / 2200-2299 / 2231.Largest Number After Digit Swaps by Parity / README_EN

发布于 2024-06-17 01:03:08 字数 4363 浏览 0 评论 0 收藏 0

2231. Largest Number After Digit Swaps by Parity

中文文档

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:

  • 1 <= num <= 109

Solutions

Solution 1

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
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;
  }
}
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;
  }
};
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
}
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(''));
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文