[leetcode] 828. 统计子串中的唯一字符

Posted PushyTao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[leetcode] 828. 统计子串中的唯一字符相关的知识,希望对你有一定的参考价值。

题目链接:传送门

很容易想到记录每个字幕出现的位置,按照每个字母出现的位置来计算对答案产生的贡献
如果说当前位置为posj,前一次出现了的位置为posi,下一次出现的位置为posk,那么当前位置posj对答案产生的贡献是:
(posj - posi) * (posk - posj)

code:

class Solution 
public:
    int uniqueLetterString(string s) 
        int ans = 0;
        unordered_map<int,vector<int> > mp;
        for(int i = 0;i < s.size(); i ++) 
            if(mp[s[i]].size() == 0) 
                mp[s[i]].push_back(-1);
            
            mp[s[i]].push_back(i);
        
        
        unordered_map<int, vector<int> >::iterator it;
        for(it = mp.begin(); it != mp.end(); it ++) 
            char c = it->first;
            vector<int> v = it->second;
            v.push_back(s.size());
            for(int i=1;i<v.size() - 1;i ++) 
                ans += (v[i] - v[i-1]) * (v[i+1] - v[i]);
            
        
        return ans;
    
;

以上是关于[leetcode] 828. 统计子串中的唯一字符的主要内容,如果未能解决你的问题,请参考以下文章

[leetcode] 828. 统计子串中的唯一字符

LeetCode 0828. 统计子串中的唯一字符

leetcode

统计指定子串在整串中出现的次数

找出字符串的最长不重复字串

子串在母串中出现的次数