返回介绍

solution / 1900-1999 / 1933.Check if String Is Decomposable Into Value-Equal Substrings / README

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

1933. 判断字符串是否可分解为值均等的子串

English Version

题目描述

一个字符串的所有字符都是一样的,被称作等值字符串。

  • 举例,"1111" 和 "33" 就是等值字符串。
  • 相比之下,"123"就不是等值字符串。

规则:给出一个数字字符串s,将字符串分解成一些等值字符串,如果有且仅有一个等值子字符串长度为2,其他的等值子字符串的长度都是3.

如果能够按照上面的规则分解字符串s,就返回真,否则返回假。

子串就是原字符串中连续的字符序列。

 

示例 1:

输入: s = "000111000"
输出: false
解释:  s只能被分解长度为3的等值子字符串。

示例 2:

输入: s = "00011111222"
输出: true
解释: s 能被分解为 ["000","111","11","222"].

示例 3:

输入: s = "01110002223300"
输出: false
解释: 一个不能被分解的原因是在开头有一个0.

 

提示:

  • 1 <= s.length <= 1000
  • s 仅包含数字。

解法

方法一:双指针

遍历字符串 $s$,用双指针 $i$ 和 $j$ 统计每个等值子字符串的长度。若长度模 $3$ 余 $1$,说明该子字符串长度不符合要求,返回 false;若长度模 $3$ 余 $2$,说明出现了长度为 $2$ 的子字符串,若此前已经出现过长度为 $2$ 的子字符串,返回 false,否则将 $j$ 的值赋给 $i$,继续遍历。

遍历结束后,判断是否出现过长度为 $2$ 的子字符串,若没有,返回 false,否则返回 true

时间复杂度 $O(n)$,其中 $n$ 为字符串 $s$ 的长度。空间复杂度 $O(1)$。

class Solution:
  def isDecomposable(self, s: str) -> bool:
    i, n = 0, len(s)
    cnt2 = 0
    while i < n:
      j = i
      while j < n and s[j] == s[i]:
        j += 1
      if (j - i) % 3 == 1:
        return False
      cnt2 += (j - i) % 3 == 2
      if cnt2 > 1:
        return False
      i = j
    return cnt2 == 1
class Solution {
  public boolean isDecomposable(String s) {
    int i = 0, n = s.length();
    int cnt2 = 0;
    while (i < n) {
      int j = i;
      while (j < n && s.charAt(j) == s.charAt(i)) {
        ++j;
      }
      if ((j - i) % 3 == 1) {
        return false;
      }
      if ((j - i) % 3 == 2 && ++cnt2 > 1) {
        return false;
      }
      i = j;
    }
    return cnt2 == 1;
  }
}
class Solution {
public:
  bool isDecomposable(string s) {
    int cnt2 = 0;
    for (int i = 0, n = s.size(); i < n;) {
      int j = i;
      while (j < n && s[j] == s[i]) {
        ++j;
      }
      if ((j - i) % 3 == 1) {
        return false;
      }
      cnt2 += (j - i) % 3 == 2;
      if (cnt2 > 1) {
        return false;
      }
      i = j;
    }
    return cnt2 == 1;
  }
};
func isDecomposable(s string) bool {
  i, n := 0, len(s)
  cnt2 := 0
  for i < n {
    j := i
    for j < n && s[j] == s[i] {
      j++
    }
    if (j-i)%3 == 1 {
      return false
    }
    if (j-i)%3 == 2 {
      cnt2++
      if cnt2 > 1 {
        return false
      }
    }
    i = j
  }
  return cnt2 == 1
}
function isDecomposable(s: string): boolean {
  const n = s.length;
  let cnt2 = 0;
  for (let i = 0; i < n; ) {
    let j = i;
    while (j < n && s[j] === s[i]) {
      ++j;
    }
    if ((j - i) % 3 === 1) {
      return false;
    }
    if ((j - i) % 3 === 2 && ++cnt2 > 1) {
      return false;
    }
    i = j;
  }
  return cnt2 === 1;
}

方法二

class Solution:
  def isDecomposable(self, s: str) -> bool:
    cnt2 = 0
    for _, g in groupby(s):
      m = len(list(g))
      if m % 3 == 1:
        return False
      cnt2 += m % 3 == 2
      if cnt2 > 1:
        return False
    return cnt2 == 1

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

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

发布评论

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