返回介绍

solution / 1600-1699 / 1624.Largest Substring Between Two Equal Characters / README

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

1624. 两个相同字符之间的最长子字符串

English Version

题目描述

给你一个字符串 s,请你返回 两个相同字符之间的最长子字符串的长度 _,_计算长度时不含这两个字符。如果不存在这样的子字符串,返回 -1

子字符串 是字符串中的一个连续字符序列。

 

示例 1:

输入:s = "aa"
输出:0
解释:最优的子字符串是两个 'a' 之间的空子字符串。

示例 2:

输入:s = "abca"
输出:2
解释:最优的子字符串是 "bc" 。

示例 3:

输入:s = "cbzxy"
输出:-1
解释:s 中不存在出现出现两次的字符,所以返回 -1 。

示例 4:

输入:s = "cabbac"
输出:4
解释:最优的子字符串是 "abba" ,其他的非最优解包括 "bb" 和 "" 。

 

提示:

  • 1 <= s.length <= 300
  • s 只含小写英文字母

解法

方法一:数组或哈希表

用数组或哈希表记录字符串 $s$ 每个字符第一次出现的位置。由于本题中字符串 $s$ 只含小写英文字母,因此可以用一个长度为 $26$ 的数组 $d$ 来记录,初始时数组元素值均为 $-1$。

遍历字符串 $s$ 中每个字符 $c$,若 $c$ 在数组中的值为 $-1$,则更新为当前位置 $i$;否则我们将答案更新为当前位置 $i$ 与数组中的值 $d[c]$ 的差值的最大值减一,即 $ans = \max (ans, i - d[c]-1)$。

时间复杂度 $O(n)$,空间复杂度 $O(C)$。其中 $n$ 为字符串长度,而 $C$ 为字符串 $s$ 的字符集大小,本题 $C=26$。

class Solution:
  def maxLengthBetweenEqualCharacters(self, s: str) -> int:
    d = {}
    ans = -1
    for i, c in enumerate(s):
      if c in d:
        ans = max(ans, i - d[c] - 1)
      else:
        d[c] = i
    return ans
class Solution {
  public int maxLengthBetweenEqualCharacters(String s) {
    int[] d = new int[26];
    Arrays.fill(d, -1);
    int ans = -1;
    for (int i = 0; i < s.length(); ++i) {
      int j = s.charAt(i) - 'a';
      if (d[j] == -1) {
        d[j] = i;
      } else {
        ans = Math.max(ans, i - d[j] - 1);
      }
    }
    return ans;
  }
}
class Solution {
public:
  int maxLengthBetweenEqualCharacters(string s) {
    vector<int> d(26, -1);
    int ans = -1;
    for (int i = 0; i < s.size(); ++i) {
      int j = s[i] - 'a';
      if (d[j] == -1) {
        d[j] = i;
      } else {
        ans = max(ans, i - d[j] - 1);
      }
    }
    return ans;
  }
};
func maxLengthBetweenEqualCharacters(s string) int {
  d := make([]int, 26)
  for i := range d {
    d[i] = -1
  }
  ans := -1
  for i, c := range s {
    c -= 'a'
    if d[c] == -1 {
      d[c] = i
    } else {
      ans = max(ans, i-d[c]-1)
    }
  }
  return ans
}
function maxLengthBetweenEqualCharacters(s: string): number {
  const n = s.length;
  const pos = new Array(26).fill(-1);
  let res = -1;
  for (let i = 0; i < n; i++) {
    const j = s[i].charCodeAt(0) - 'a'.charCodeAt(0);
    if (pos[j] === -1) {
      pos[j] = i;
    } else {
      res = Math.max(res, i - pos[j] - 1);
    }
  }
  return res;
}
impl Solution {
  pub fn max_length_between_equal_characters(s: String) -> i32 {
    let s = s.as_bytes();
    let n = s.len();
    let mut pos = [-1; 26];
    let mut res = -1;
    for i in 0..n {
      let j = (s[i] - b'a') as usize;
      let i = i as i32;
      if pos[j] == -1 {
        pos[j] = i;
      } else {
        res = res.max(i - pos[j] - 1);
      }
    }
    res
  }
}
#define max(a, b) (((a) > (b)) ? (a) : (b))

int maxLengthBetweenEqualCharacters(char* s) {
  int pos[26];
  memset(pos, -1, sizeof(pos));
  int n = strlen(s);
  int res = -1;
  for (int i = 0; i < n; i++) {
    char c = s[i];
    int j = c - 'a';
    if (pos[j] == -1) {
      pos[j] = i;
    } else {
      res = max(res, i - pos[j] - 1);
    }
  }
  return res;
}

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

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

发布评论

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