返回介绍

solution / 3000-3099 / 3035.Maximum Palindromes After Operations / README_EN

发布于 2024-06-17 01:02:57 字数 5941 浏览 0 评论 0 收藏 0

3035. Maximum Palindromes After Operations

中文文档

Description

You are given a 0-indexed string array words having length n and containing 0-indexed strings.

You are allowed to perform the following operation any number of times (including zero):

  • Choose integers i, j, x, and y such that 0 <= i, j < n, 0 <= x < words[i].length, 0 <= y < words[j].length, and swap the characters words[i][x] and words[j][y].

Return _an integer denoting the maximum number of palindromes _words_ can contain, after performing some operations._

Note: i and j may be equal during an operation.

 

Example 1:

Input: words = ["abbb","ba","aa"]
Output: 3
Explanation: In this example, one way to get the maximum number of palindromes is:
Choose i = 0, j = 1, x = 0, y = 0, so we swap words[0][0] and words[1][0]. words becomes ["bbbb","aa","aa"].
All strings in words are now palindromes.
Hence, the maximum number of palindromes achievable is 3.

Example 2:

Input: words = ["abc","ab"]
Output: 2
Explanation: In this example, one way to get the maximum number of palindromes is: 
Choose i = 0, j = 1, x = 1, y = 0, so we swap words[0][1] and words[1][0]. words becomes ["aac","bb"].
Choose i = 0, j = 0, x = 1, y = 2, so we swap words[0][1] and words[0][2]. words becomes ["aca","bb"].
Both strings are now palindromes.
Hence, the maximum number of palindromes achievable is 2.

Example 3:

Input: words = ["cd","ef","a"]
Output: 1
Explanation: In this example, there is no need to perform any operation.
There is one palindrome in words "a".
It can be shown that it is not possible to get more than one palindrome after any number of operations.
Hence, the answer is 1.

 

Constraints:

  • 1 <= words.length <= 1000
  • 1 <= words[i].length <= 100
  • words[i] consists only of lowercase English letters.

Solutions

Solution 1

class Solution:
  def maxPalindromesAfterOperations(self, words: List[str]) -> int:
    s = mask = 0
    for w in words:
      s += len(w)
      for c in w:
        mask ^= 1 << (ord(c) - ord("a"))
    s -= mask.bit_count()
    words.sort(key=len)
    ans = 0
    for w in words:
      s -= len(w) // 2 * 2
      if s < 0:
        break
      ans += 1
    return ans
class Solution {
  public int maxPalindromesAfterOperations(String[] words) {
    int s = 0, mask = 0;
    for (var w : words) {
      s += w.length();
      for (var c : w.toCharArray()) {
        mask ^= 1 << (c - 'a');
      }
    }
    s -= Integer.bitCount(mask);
    Arrays.sort(words, (a, b) -> a.length() - b.length());
    int ans = 0;
    for (var w : words) {
      s -= w.length() / 2 * 2;
      if (s < 0) {
        break;
      }
      ++ans;
    }
    return ans;
  }
}
class Solution {
public:
  int maxPalindromesAfterOperations(vector<string>& words) {
    int s = 0, mask = 0;
    for (const auto& w : words) {
      s += w.length();
      for (char c : w) {
        mask ^= 1 << (c - 'a');
      }
    }
    s -= __builtin_popcount(mask);
    sort(words.begin(), words.end(), [](const string& a, const string& b) { return a.length() < b.length(); });
    int ans = 0;
    for (const auto& w : words) {
      s -= w.length() / 2 * 2;
      if (s < 0) {
        break;
      }
      ++ans;
    }
    return ans;
  }
};
func maxPalindromesAfterOperations(words []string) (ans int) {
  var s, mask int
  for _, w := range words {
    s += len(w)
    for _, c := range w {
      mask ^= 1 << (c - 'a')
    }
  }
  s -= bits.OnesCount(uint(mask))
  sort.Slice(words, func(i, j int) bool {
    return len(words[i]) < len(words[j])
  })
  for _, w := range words {
    s -= len(w) / 2 * 2
    if s < 0 {
      break
    }
    ans++
  }
  return
}
function maxPalindromesAfterOperations(words: string[]): number {
  let s: number = 0;
  let mask: number = 0;
  for (const w of words) {
    s += w.length;
    for (const c of w) {
      mask ^= 1 << (c.charCodeAt(0) - 'a'.charCodeAt(0));
    }
  }
  s -= (mask.toString(2).match(/1/g) || []).length;
  words.sort((a, b) => a.length - b.length);
  let ans: number = 0;
  for (const w of words) {
    s -= Math.floor(w.length / 2) * 2;
    if (s < 0) {
      break;
    }
    ans++;
  }
  return ans;
}

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

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

发布评论

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