LeetCode每日一题(1915. Number of Wonderful Substrings)

A wonderful string is a string where at most one letter appears an odd number of times.

For example, “ccjjc” and “abab” are wonderful, but “ab” is not.
Given a string word that consists of the first ten lowercase English letters (‘a’ through ‘j’), return the number of wonderful non-empty substrings in word. If the same substring appears multiple times in word, then count each occurrence separately.

A substring is a contiguous sequence of characters in a string.

Example 1:

Input: word = “aba”
Output: 4

Explanation: The four wonderful substrings are underlined below:

  • “aba” -> “a”
  • “aba” -> “b”
  • “aba” -> “a”
  • “aba” -> “aba”

Example 2:

Input: word = “aabb”
Output: 9

Explanation: The nine wonderful substrings are underlined below:

  • “aabb” -> “a”
  • “aabb” -> “aa”
  • “aabb” -> “aab”
  • “aabb” -> “aabb”
  • “aabb” -> “a”
  • “aabb” -> “abb”
  • “aabb” -> “b”
  • “aabb” -> “bb”
  • “aabb” -> “b”

Example 3:

Input: word = “he”
Output: 2

Explanation: The two wonderful substrings are underlined below:

  • “he” -> “h”
  • “he” -> “e”

Constraints:

  • 1 <= word.length <= 105
  • word consists of lowercase English letters from ‘a’ to ‘j’.

  1. 用 bitmask 的形式来表现一个字符串中每个字符的奇偶状态
  2. 根据条件, 我们找到与当前 bitmask 相同和差一位的所有**之前的**字符串的数量

注意代码中counts[0] = 1这一句, 应为 bitmask 为 0 的时候所有字符出现的次数均为偶数, 所以是符合最多出现一个字符为奇数的条件的,所以需要初始化为 1, 其实就是字符串本身不用减去任何前缀字符串就可以满足条件。


impl Solution {
    pub fn wonderful_substrings(word: String) -> i64 {
        let mut counts = vec![0i64; 1024];
        counts[0] = 1;
        let mut mask = 0;
        let mut ans = 0;
        for c in word.chars() {
            mask ^= 1 << (c as usize - 97);
            ans += counts[mask];
            for i in 0..10 {
                ans += counts[mask ^ (1 << i)];
            }
            counts[mask] += 1;
        }
        ans
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值