LeetCode 0809. 情感丰富的文字
Posted Tisfy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 0809. 情感丰富的文字相关的知识,希望对你有一定的参考价值。
【LetMeFly】809.情感丰富的文字
力扣题目链接:https://leetcode.cn/problems/expressive-words/
有时候人们会用重复写一些字母来表示额外的感受,比如 "hello" -> "heeellooo"
, "hi" -> "hiii"
。我们将相邻字母都相同的一串字符定义为相同字母组,例如:"h", "eee", "ll", "ooo"。
对于一个给定的字符串 S ,如果另一个单词能够通过将一些字母组扩张从而使其和 S 相同,我们将这个单词定义为可扩张的(stretchy)。扩张操作定义如下:选择一个字母组(包含字母 c
),然后往其中添加相同的字母 c
使其长度达到 3 或以上。
例如,以 "hello" 为例,我们可以对字母组 "o" 扩张得到 "hellooo",但是无法以同样的方法得到 "helloo" 因为字母组 "oo" 长度小于 3。此外,我们可以进行另一种扩张 "ll" -> "lllll" 以获得 "helllllooo"。如果 S = "helllllooo"
,那么查询词 "hello" 是可扩张的,因为可以对它执行这两种扩张操作使得 query = "hello" -> "hellooo" -> "helllllooo" = S
。
输入一组查询单词,输出其中可扩张的单词数量。
示例:
输入: S = "heeellooo" words = ["hello", "hi", "helo"] 输出:1 解释: 我们能通过扩张 "hello" 的 "e" 和 "o" 来得到 "heeellooo"。 我们不能通过扩张 "helo" 来得到 "heeellooo" 因为 "ll" 的长度小于 3 。
提示:
0 <= len(S) <= 100
。0 <= len(words) <= 100
。0 <= len(words[i]) <= 100
。S
和所有在words
中的单词都只由小写字母组成。
方法一:模拟 + 划分
题目分析
这道题题目挺难读懂的,因此叫“阅读理解题”
说白了就是:假如字符串中有连续的
n
1
n_1
n1个'a'
,那么我们可以将这
n
1
n_1
n1个'a'
增加至```
n
2
n_2
n2个(其中
n
1
≥
1
,
n
2
≥
3
n_1\\geq1,n_2\\geq3
n1≥1,n2≥3
例如baac
是“1个b
,2个a
,1个c
”,我们可以把
2
2
2个'a'
拓展为
3
3
3个,字符串就变成了baaac
。这就是题目中所谓的“拓展”
题目给定了一个字符串 s s s和一个字符串数组 w o r d s words words,问你 w o r d s words words中有多少个字符串可以“拓展”得到 s s s
解题思路
我们可以预处理一遍字符串,将字符串变成“1个b
,2个a
,1个c
”的样子。
void string2vectorPair(string& s, vector<pii>& p)
char lastChar = s[0]; // 上一个字母
int n = s.size();
int cnt = 0;
for (int i = 0; i <= n; i++)
if (i == n || s[i] != lastChar) // 这个字母和上一个字母不相同 或 达到了字符串尾
p.push_back(lastChar, cnt); // 获得了连续的“xxx”
if (i != n)
lastChar = s[i];
cnt = 0;
cnt++;
接下来将字符串数组中的每个“拆分后数组”和原始字符串相比较,如果二者长度相同,并且里面每一个对于的“小连续”都能拓展成对应的“大连续”,那么答案就加一。
- 时间复杂度 O ( l e n ( s ) + C ) O(len(s) + C) O(len(s)+C),其中 C C C是字符串数组中的总字符个数
- 空间复杂度 O ( l e n ( s ) + m a x ( l e n ( w o r d ) ) ) O(len(s) + max(len(word))) O(len(s)+max(len(word))),其中 w o r d word word是 w o r d s words words中的每一个字符串
AC代码
C++
typedef pair<char, int> pii;
class Solution
private:
void string2vectorPair(string& s, vector<pii>& p)
char lastChar = s[0];
int n = s.size();
int cnt = 0;
for (int i = 0; i <= n; i++)
if (i == n || s[i] != lastChar)
p.push_back(lastChar, cnt);
if (i != n)
lastChar = s[i];
cnt = 0;
cnt++;
public:
int expressiveWords(string s, vector<string>& words)
vector<pii> origin;
string2vectorPair(s, origin);
int ans = 0;
for (string& s : words)
vector<pii> thisWord;
string2vectorPair(s, thisWord);
if (origin.size() != thisWord.size())
continue;
bool can = true;
for (int i = 0; i < origin.size(); i++)
if (origin[i] == thisWord[i] || (origin[i].first == thisWord[i].first && origin[i].second > thisWord[i].second && origin[i].second >= 3))
continue;
can = false;
break;
ans += can;
return ans;
;
同步发文于CSDN,原创不易,转载请附上原文链接哦~
Tisfy:https://letmefly.blog.csdn.net/article/details/128035958
以上是关于LeetCode 0809. 情感丰富的文字的主要内容,如果未能解决你的问题,请参考以下文章