首页 > 其他 > 详细

1358. Number of Substrings Containing All Three Characters

时间:2020-02-25 12:13:51      阅读:50      评论:0      收藏:0      [点我收藏+]

Given a string s consisting only of characters ab and c.

Return the number of substrings containing at least one occurrence of all these characters ab and c.

 

Example 1:

Input: s = "abcabc"
Output: 10
Explanation: The substrings containing at least one occurrence of the characters ab and c are "abc", "abca", "abcab", "abcabc", "bca", "bcab", "bcabc", "cab", "cabc" and "abc" (again). 

Example 2:

Input: s = "aaacb"
Output: 3
Explanation: The substrings containing at least one occurrence of the characters ab and c are "aaacb", "aacb" and "acb".

Example 3:

Input: s = "abc"
Output: 1

 

Constraints:

  • 3 <= s.length <= 5 x 10^4
  • s only consists of ab or characters.
class Solution {
  public int numberOfSubstrings(String s) {
        int count[] = {0, 0, 0}, res = 0 , i = 0, n = s.length();
        for (int j = 0; j < n; ++j) {
            ++count[s.charAt(j) - ‘a‘];
            while (count[0] > 0 && count[1] > 0 && count[2] > 0)
                --count[s.charAt(i++) - ‘a‘];
            res += i;
        }
        return res;
    }
}

sliding window

技术分享图片

 

 

class Solution {
    public int numberOfSubstrings(String s) {
        int[] count = new int[3];
        int res = 0;
        
        for(int lo = -1, hi = 0; hi < s.length(); hi++){
            count[s.charAt(hi) - ‘a‘]++;
            while(count[0] > 0 && count[1] > 0 && count[2] > 0){
                res += s.length() - hi;
                --count[s.charAt(++lo) - ‘a‘];
            }
        }
        return res;
    }
}

 

1358. Number of Substrings Containing All Three Characters

原文:https://www.cnblogs.com/wentiliangkaihua/p/12360775.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!