1392. Longest Happy Prefix

A string is called a happy prefix if is a non-empty prefix which is also a suffix (excluding itself).

Given a string s. Return the longest happy prefix of s .

Return an empty string if no such prefix exists.

 

Example 1:

Input: s = "level"
Output: "l"
Explanation: s contains 4 prefix excluding itself ("l", "le", "lev", "leve"), and suffix ("l", "el", "vel", "evel"). The largest prefix which is also suffix is given by "l".

Example 2:

Input: s = "ababab"
Output: "abab"
Explanation: "abab" is the largest prefix which is also suffix. They can overlap in the original string.

Example 3:

Input: s = "leetcodeleet"
Output: "leet"

Example 4:

Input: s = "a"
Output: ""

 

Constraints:

  • 1 <= s.length <= 10^5
  • s contains only lowercase English letters.

思路:对prefix和suffix分别求hash,如果不mod会TLE

class Solution(object):
    def longestPrefix(self, s):
        """
        :type s: str
        :rtype: str
        """
        n = len(s)
        prefix = suffix = 0
        mul = 1
        mod = 10**9+7
        res = 0
        for i,j in zip(range(n-1),range(n-1,0,-1)):
            di,dj = ord(s[i])-ord('a'),ord(s[j])-ord('a'),
            prefix = 26*prefix + di
            suffix = suffix + mul*dj
            prefix %= mod
            suffix %= mod
            mul *= 26
            mul %= mod
            if prefix == suffix:
                res=i+1
        return s[:res]

s=Solution()
print(s.longestPrefix('level'))
print(s.longestPrefix('ababab'))
print(s.longestPrefix('leetcodeleet'))
print(s.longestPrefix('a'))

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值