返回介绍

solution / 1400-1499 / 1400.Construct K Palindrome Strings / README_EN

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

1400. Construct K Palindrome Strings

中文文档

Description

Given a string s and an integer k, return true _if you can use all the characters in _s_ to construct _k_ palindrome strings or _false_ otherwise_.

 

Example 1:

Input: s = "annabelle", k = 2
Output: true
Explanation: You can construct two palindromes using all characters in s.
Some possible constructions "anna" + "elble", "anbna" + "elle", "anellena" + "b"

Example 2:

Input: s = "leetcode", k = 3
Output: false
Explanation: It is impossible to construct 3 palindromes using all the characters of s.

Example 3:

Input: s = "true", k = 4
Output: true
Explanation: The only possible solution is to put each character in a separate string.

 

Constraints:

  • 1 <= s.length <= 105
  • s consists of lowercase English letters.
  • 1 <= k <= 105

Solutions

Solution 1: Counting

First, we check if the length of string $s$ is less than $k$. If it is, we cannot construct $k$ palindrome strings, so we can directly return false.

Otherwise, we use a hash table or an array $cnt$ to count the occurrences of each character in string $s$. Finally, we only need to count the number of characters $x$ that appear an odd number of times in $cnt$. If $x$ is greater than $k$, we cannot construct $k$ palindrome strings, so we return false; otherwise, we return true.

The time complexity is $O(n)$, and the space complexity is $O(C)$. Where $n$ is the length of string $s$, and $C$ is the size of the character set, here $C=26$.

class Solution:
  def canConstruct(self, s: str, k: int) -> bool:
    if len(s) < k:
      return False
    cnt = Counter(s)
    return sum(v & 1 for v in cnt.values()) <= k
class Solution {
  public boolean canConstruct(String s, int k) {
    int n = s.length();
    if (n < k) {
      return false;
    }
    int[] cnt = new int[26];
    for (int i = 0; i < n; ++i) {
      ++cnt[s.charAt(i) - 'a'];
    }
    int x = 0;
    for (int v : cnt) {
      x += v & 1;
    }
    return x <= k;
  }
}
class Solution {
public:
  bool canConstruct(string s, int k) {
    if (s.size() < k) {
      return false;
    }
    int cnt[26]{};
    for (char& c : s) {
      ++cnt[c - 'a'];
    }
    int x = 0;
    for (int v : cnt) {
      x += v & 1;
    }
    return x <= k;
  }
};
func canConstruct(s string, k int) bool {
  if len(s) < k {
    return false
  }
  cnt := [26]int{}
  for _, c := range s {
    cnt[c-'a']++
  }
  x := 0
  for _, v := range cnt {
    x += v & 1
  }
  return x <= k
}
function canConstruct(s: string, k: number): boolean {
  if (s.length < k) {
    return false;
  }
  const cnt: number[] = new Array(26).fill(0);
  for (const c of s) {
    ++cnt[c.charCodeAt(0) - 'a'.charCodeAt(0)];
  }
  let x = 0;
  for (const v of cnt) {
    x += v & 1;
  }
  return x <= k;
}

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

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

发布评论

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