zoukankan      html  css  js  c++  java
  • 【leetcode】828. Unique Letter String

    题目如下:

    A character is unique in string S if it occurs exactly once in it.

    For example, in string S = "LETTER", the only unique characters are "L" and "R".

    Let's define UNIQ(S) as the number of unique characters in string S.

    For example, UNIQ("LETTER") =  2.

    Given a string S with only uppercases, calculate the sum of UNIQ(substring) over all non-empty substrings of S.

    If there are two or more equal substrings at different positions in S, we consider them different.

    Since the answer can be very large, return the answer modulo 10 ^ 9 + 7.

    Example 1:

    Input: "ABC"
    Output: 10
    Explanation: All possible substrings are: "A","B","C","AB","BC" and "ABC".
    Evey substring is composed with only unique letters.
    Sum of lengths of all substring is 1 + 1 + 1 + 2 + 2 + 3 = 10

    Example 2:

    Input: "ABA"
    Output: 8
    Explanation: The same as example 1, except uni("ABA") = 1.
    

    Note: 0 <= S.length <= 10000.

    解题思路:在任何子串中,只有出现一次的字符才对最终的结果起作用。假设输入的S为 XXXAXXXXAXXAXXXXX,X表示其他任意字符,现在我们来计算蓝A对最后的输出贡献了多少,很显然在两个红A之间的子串中,只要是包括蓝A的子串都有蓝A的贡献,如果第一个红A到蓝A之间的字符数量是L,蓝A到第二个红A之间的字符数量是R,那么蓝A的贡献就是 L + R + L*R + 1 ,其中L表示蓝A与左边字符组成的子串数量,R为与右边的,L*R为同时与左右结合,1表示不与任何字符结合。所有只有找出所有字符左右两边相同字符出现的位置,即可计算出最终的答案。

    代码如下:

    class Solution(object):
        def uniqueLetterString(self, S):
            """
            :type S: str
            :rtype: int
            """
            dic = {}
            for i,v in enumerate(S):
                dic[v] = dic.setdefault(v,[]) + [i]
    
            res = 0
            import bisect
            for i,v in enumerate(S):
                inx = bisect.bisect_left(dic[v], i)
                before = i
                after = len(S) - i - 1
                if inx - 1 >= 0:
                    before = i - dic[v][inx - 1] - 1
                if inx + 1 < len(dic[v]):
                    after = dic[v][inx + 1] - i - 1
                res += (before + after + before * after + 1)
            return res % (pow(10, 9) + 7)
  • 相关阅读:
    Shell面试题4:扫描网络内存活主机案例
    第三题批量创建特殊要求用户案例
    chpasswd 更简单的更改密码的方式
    30题之第二题
    shell30题之第一题
    2019牛客多校第四场B xor——线段树&&线性基的交
    POJ 2893 M × N Puzzle——八数码有解条件
    2019HDU多校第四场 Just an Old Puzzle ——八数码有解条件
    2019HDU多校第三场F Fansblog——威尔逊定理&&素数密度
    威尔逊定理
  • 原文地址:https://www.cnblogs.com/seyjs/p/10602944.html
Copyright © 2011-2022 走看看