comments | difficulty | edit_url | rating | source | tags | ||
---|---|---|---|---|---|---|---|
true |
Medium |
1501 |
Biweekly Contest 106 Q2 |
|
You are given a digit string s
that consists of digits from 0 to 9.
A string is called semi-repetitive if there is at most one adjacent pair of the same digit. For example, "0010"
, "002020"
, "0123"
, "2002"
, and "54944"
are semi-repetitive while the following are not: "00101022"
(adjacent same digit pairs are 00 and 22), and "1101234883"
(adjacent same digit pairs are 11 and 88).
Return the length of the longest semi-repetitive substring of s
.
Example 1:
Input: s = "52233"
Output: 4
Explanation:
The longest semi-repetitive substring is "5223". Picking the whole string "52233" has two adjacent same digit pairs 22 and 33, but at most one is allowed.
Example 2:
Input: s = "5494"
Output: 4
Explanation:
s
is a semi-repetitive string.
Example 3:
Input: s = "1111111"
Output: 2
Explanation:
The longest semi-repetitive substring is "11". Picking the substring "111" has two adjacent same digit pairs, but at most one is allowed.
Constraints:
1 <= s.length <= 50
'0' <= s[i] <= '9'
We use two pointers to maintain a range
We use
The time complexity is
class Solution:
def longestSemiRepetitiveSubstring(self, s: str) -> int:
ans, n = 1, len(s)
cnt = j = 0
for i in range(1, n):
cnt += s[i] == s[i - 1]
while cnt > 1:
cnt -= s[j] == s[j + 1]
j += 1
ans = max(ans, i - j + 1)
return ans
class Solution {
public int longestSemiRepetitiveSubstring(String s) {
int ans = 1, n = s.length();
for (int i = 1, j = 0, cnt = 0; i < n; ++i) {
cnt += s.charAt(i) == s.charAt(i - 1) ? 1 : 0;
for (; cnt > 1; ++j) {
cnt -= s.charAt(j) == s.charAt(j + 1) ? 1 : 0;
}
ans = Math.max(ans, i - j + 1);
}
return ans;
}
}
class Solution {
public:
int longestSemiRepetitiveSubstring(string s) {
int ans = 1, n = s.size();
for (int i = 1, j = 0, cnt = 0; i < n; ++i) {
cnt += s[i] == s[i - 1] ? 1 : 0;
for (; cnt > 1; ++j) {
cnt -= s[j] == s[j + 1] ? 1 : 0;
}
ans = max(ans, i - j + 1);
}
return ans;
}
};
func longestSemiRepetitiveSubstring(s string) (ans int) {
ans = 1
for i, j, cnt := 1, 0, 0; i < len(s); i++ {
if s[i] == s[i-1] {
cnt++
}
for ; cnt > 1; j++ {
if s[j] == s[j+1] {
cnt--
}
}
ans = max(ans, i-j+1)
}
return
}
function longestSemiRepetitiveSubstring(s: string): number {
const n = s.length;
let ans = 1;
for (let i = 1, j = 0, cnt = 0; i < n; ++i) {
cnt += s[i] === s[i - 1] ? 1 : 0;
for (; cnt > 1; ++j) {
cnt -= s[j] === s[j + 1] ? 1 : 0;
}
ans = Math.max(ans, i - j + 1);
}
return ans;
}