天池 在线编程 最频繁出现的子串(字符串哈希)
生活随笔
收集整理的這篇文章主要介紹了
天池 在线编程 最频繁出现的子串(字符串哈希)
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
文章目錄
- 1. 題目
- 2. 解題
1. 題目
給定一個(gè)字符串,我們想知道滿足以下兩個(gè)條件的子串最多出現(xiàn)了多少次:
子串的長(zhǎng)度在之間 [minLength, maxLength]
子串的字符種類不超過 maxUnique
寫一個(gè)函數(shù) getMaxOccurrences ,其返回滿足條件的子串最多出現(xiàn)次數(shù)。
https://tianchi.aliyun.com/oj/231203672248052266/245580596369363584
2. 解題
class Solution { public:/*** @param s: string s* @param minLength: min length for the substring* @param maxLength: max length for the substring* @param maxUnique: max unique letter allowed in the substring* @return: the max occurrences of substring*/int maxcount = 0;vector<long long> pow;int getMaxOccurrences(string &s, int minLength, int maxLength, int maxUnique) {// write your code herepow.resize(27);pow[0] = 1;for(int i = 1; i <= 26; i++) {pow[i] = pow[i-1]*26;//預(yù)處理 26 的冪次方}for(int len = minLength; len <= maxLength; len++) { // 暴力枚舉子串長(zhǎng)度help(s, len, maxUnique);}return maxcount;}void help(string &s, int len, int maxUnique) {unordered_map<long long, int> count;//字符串哈希值,字符串個(gè)數(shù)unordered_map<char, int> m;//滑窗內(nèi)的字符計(jì)數(shù)int i = 0;long long hash = 0;for( ; i < len-1; i++){m[s[i]]++;hash = hash*26+s[i]-'a';}for(int j = 0 ; i < s.size(); ++i){m[s[i]]++;hash = hash*26+s[i]-'a';if(m.size() <= maxUnique && i-j+1 == len){ // 窗口內(nèi)子串字符種類滿足,長(zhǎng)度達(dá)到 lenif(++count[hash] > maxcount)maxcount = count[hash];}while(i-j+1 > len || m.size() > maxUnique){ // 長(zhǎng)度超了,或者 字符種類超了hash -= pow[i-j]*(s[j]-'a');//最前面的字符哈希值減去if(--m[s[j]] == 0)//計(jì)數(shù) -1m.erase(s[j]);j++;}}} };12ms C++
同題:LeetCode 1297. 子串的最大出現(xiàn)次數(shù)
我的CSDN博客地址 https://michael.blog.csdn.net/
長(zhǎng)按或掃碼關(guān)注我的公眾號(hào)(Michael阿明),一起加油、一起學(xué)習(xí)進(jìn)步!
總結(jié)
以上是生活随笔為你收集整理的天池 在线编程 最频繁出现的子串(字符串哈希)的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: LeetCode 915. 分割数组
- 下一篇: LeetCode 930. 和相同的二元