828. Count Unique Characters of All Substrings of a Given String

题目

在这里插入图片描述

解法

  • Sum of Subarray Minimums有点像,那个题目是找前面和后面第一个比现在小的值,这道题是看前面和后面第一个和现在想同的字符
  • 核心思想:对于每个字符,数出这个字符作为unique字符贡献了多少次,比如对于BAB,那么A在BA,A,AB,ABA这些substring都对答案贡献了1
class Solution:
    def uniqueLetterString(self, s: str) -> int:
        char2ind_map = {}
        for i,c in enumerate(s):
            if c not in char2ind_map:
                char2ind_map[c] = [-1]
            char2ind_map[c].append(i)
        # print(char2ind_map)
        for c in char2ind_map:
            char2ind_map[c].append(len(s))
        
        ans = 0
        for c,ind_list in char2ind_map.items():
            for j in range(1,len(ind_list)-1):
                left = ind_list[j] - ind_list[j-1]
                right = ind_list[j+1] - ind_list[j]
                ans += left*right
        
        return ans

参考: https://leetcode.com/problems/count-unique-characters-of-all-substrings-of-a-given-string/discuss/128952/JavaC%2B%2BPython-One-pass-O(N)

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
The `implode()` function in PHP is used to join elements of an array into a string with a specified separator. It takes two parameters: the first parameter is the separator that will be used to join the array elements, and the second parameter is the array of elements to be joined. The function returns a string that is formed by joining the elements of the array with the specified separator. For example, if we have an array of strings like this: ``` $arr = array('apple', 'banana', 'pear'); ``` We can join the elements of the array into a string using the `implode()` function like this: ``` $str = implode(',', $arr); ``` This will create a string like this: ``` "apple,banana,pear" ``` The `explode()` function, on the other hand, is used to split a string into an array of substrings using a specified separator. It takes two parameters: the first parameter is the separator that will be used to split the string, and the second parameter is the string to be split. The function returns an array of substrings. For example, if we have a string like this: ``` $str = "apple,banana,pear"; ``` We can split the string into an array of substrings using the `explode()` function like this: ``` $arr = explode(',', $str); ``` This will create an array like this: ``` array('apple', 'banana', 'pear') ``` So, basically, the `implode()` function joins an array of elements into a string using a specified separator, while the `explode()` function splits a string into an array of substrings using a specified separator.

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值