leetcode - 2981. Find Longest Special Substring That Occurs Thrice I

Description

You are given a string s that consists of lowercase English letters.

A string is called special if it is made up of only a single character. For example, the string "abc" is not special, whereas the strings "ddd", "zz", and "f" are special.

Return the length of the longest special substring of s which occurs at least thrice, or -1 if no special substring occurs at least thrice.

A substring is a contiguous non-empty sequence of characters within a string.

Example 1:

复制代码
Input: s = "aaaa"
Output: 2
Explanation: The longest special substring which occurs thrice is "aa": substrings "aaaa", "aaaa", and "aaaa".
It can be shown that the maximum length achievable is 2.

Example 2:

复制代码
Input: s = "abcdef"
Output: -1
Explanation: There exists no special substring which occurs at least thrice. Hence return -1.

Example 3:

复制代码
Input: s = "abcaba"
Output: 1
Explanation: The longest special substring which occurs thrice is "a": substrings "abcaba", "abcaba", and "abcaba".
It can be shown that the maximum length achievable is 1.

Constraints:

复制代码
3 <= s.length <= 50
s consists of only lowercase English letters.

Solution

Brute Force

Because of the low constrains, a very simple brute force way would be: we get all the special subarrays, and then calculate each one's frequency, then get the largest length of the subarrays that meet the requirements.

Time complexity: o ( n 3 ) o(n^3) o(n3)

Space complexity: o ( 1 ) o(1) o(1)

With a more strict constrain, see this 2982. Find Longest Special Substring That Occurs Thrice II

Code

Brute Force

python3 复制代码
class Solution:
    def maximumLength(self, s: str) -> int:
        res = -1
        # s[i:j+1]
        for i in range(len(s)):
            for j in range(i, len(s)):
                if s[j] != s[i]:
                    break
                sub_string = s[i: j + 1]
                sub_string_fre = 0
                for k in range(0, len(s)):
                    if k + j + 1 - i > len(s):
                        break
                    if sub_string == s[k: k + j + 1 - i]:
                        sub_string_fre += 1
                if sub_string_fre >= 3:
                    res = max(res, j + 1 - i)
        return res
相关推荐
三言老师2 分钟前
K8s 集群 LocalPV 静态 PV 资源手动创建实操
linux·运维·服务器·kubernetes
一直在努力学习的菜鸟12 分钟前
Rocky Linux 8.10 编译安装 PostgreSQL 17.11
linux·运维
Doraemomo27 分钟前
Linux编程-进程的执行和退出
linux·运维·服务器
我变成萤火虫31 分钟前
2026 ICPC沈阳邀请赛Vp补题
数据结构·c++·算法·贪心算法·stl·排序算法·动态规划
风起洛阳@不良使33 分钟前
中级软考(软件攻城狮)第3章知识点——数据结构与数据运算(线性结构+非线性结构)
数据结构·算法·链表
AndrewHZ1 小时前
图像处理入门009 | OpenCV 图像读取与显示:imread/imshow 全解析
图像处理·python·opencv·算法·计算机视觉·图像显示
学计算机的计算基1 小时前
TCP 传输层硬核整理:三次握手、四次挥手、拥塞控制一次讲透
java·网络·笔记·网络协议·算法
lengjingzju1 小时前
编译与调试完全指南—第5章 GDB调试详解
linux
艾伦_耶格宇1 小时前
【ELK】-5 kibana和filebeat
linux·运维·ubuntu·elk
xx~t1 小时前
嵌入式学习22
数据结构·学习·算法·排序算法