1684.统计一致字符串的数目

【LetMeFly】1684.统计一致字符串的数目

力扣题目链接:https://leetcode.cn/problems/count-the-number-of-consistent-strings/

给你一个由不同字符组成的字符串 allowed 和一个字符串数组 words 。如果一个字符串的每一个字符都在 allowed 中,就称这个字符串是 一致字符串

请你返回 words 数组中 一致字符串 的数目。

 

示例 1:

输入:allowed = "ab", words = ["ad","bd","aaab","baa","badab"]
输出:2
解释:字符串 "aaab" 和 "baa" 都是一致字符串,因为它们只包含字符 'a' 和 'b' 。

示例 2:

输入:allowed = "abc", words = ["a","b","c","ab","ac","bc","abc"]
输出:7
解释:所有字符串都是一致的。

示例 3:

输入:allowed = "cad", words = ["cc","acd","b","ba","bac","bad","ac","d"]
输出:4
解释:字符串 "cc","acd","ac" 和 "d" 是一致字符串。

 

提示:

  • 1 <= words.length <= 104
  • 1 <= allowed.length <= 26
  • 1 <= words[i].length <= 10
  • allowed 中的字符 互不相同 。
  • words[i] 和 allowed 只包含小写英文字母。

方法一:遍历

因为字符集为26个小写英文字母,因此我们开辟大小为$26$的数组,来记录每个字母是否在$allowed$中出现过

1
bool bin[26] = {false};

之后遍历一遍$allowed$,将出现过的字母标记为$true$

1
2
for (char& c : allowed)
bin[c - 'a'] = true;

接下来就能愉快地处理每一个字符串了

对于字符串数组中的某一个字符串,使用一个变量$ok = true$来记录字符串是否有“不能出现的字符”

遍历字符串,如果某个字符没有在$allowed$中出现过($bin$为$false$),那么就将$ok$置为$false$并结束遍历这个字符串

若字符串遍历结束$ok$仍为$true$,那么答案数量就加一

1
2
3
4
5
6
7
8
9
10
11
int ans = 0;
for (string& s : words) { // 遍历字符串数组中的每一个字符串s
bool ok = true;
for (char& c : s) {
if (!bin[c - 'a']) { // 未在allowed中出现过的字符出现过
ok = false;
break;
}
}
ans += ok;
}
  • 时间复杂度$O(len(allowed) + N)$,其中$N$是$words$中所有字符的个数
  • 空间复杂度$O(C)$,其中$C$是字符集大小,这里为26个小写英文字母$C=26$

AC代码

C++

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
class Solution {
public:
int countConsistentStrings(string& allowed, vector<string>& words) {
bool bin[26] = {false};
for (char& c : allowed)
bin[c - 'a'] = true;
int ans = 0;
for (string& s : words) {
bool ok = true;
for (char& c : s) {
if (!bin[c - 'a']) {
ok = false;
break;
}
}
ans += ok;
}
return ans;
}
};

同步发文于CSDN,原创不易,转载请附上原文链接哦~
Tisfy:https://letmefly.blog.csdn.net/article/details/127743936


1684.统计一致字符串的数目
https://blog.letmefly.xyz/2022/11/08/LeetCode 1684.统计一致字符串的数目/
作者
Tisfy
发布于
2022年11月8日
许可协议