目录链接:
力扣编程题-解法汇总_分享+记录-CSDN博客
GitHub同步刷题项目:
https://github.com/September26/java-algorithms
原题链接:. - 力扣(LeetCode)
描述:
给你一个字符串 word
,你可以向其中任何位置插入 "a"、"b" 或 "c" 任意次,返回使 word
有效 需要插入的最少字母数。
如果字符串可以由 "abc" 串联多次得到,则认为该字符串 有效 。
示例 1:
输入:word = "b" 输出:2 解释:在 "b" 之前插入 "a" ,在 "b" 之后插入 "c" 可以得到有效字符串 "abc" 。
示例 2:
输入:word = "aaa" 输出:6 解释:在每个 "a" 之后依次插入 "b" 和 "c" 可以得到有效字符串 "abcabcabc" 。
示例 3:
输入:word = "abc" 输出:0 解释:word 已经是有效字符串,不需要进行修改。
提示:
1 <= word.length <= 50
-
word
仅由字母 "a"、"b" 和 "c" 组成。
解题思路:
本来想用动态规划什么的,后来发现,并不需要。
设置index记录位置,取index位置的前3位,如果等于abc,则index+3,不需要插入字母;
取index位置的前2位,如果等于ab,bc,ab,则需要插入一个1个字母,index+2;文章来源:https://www.toymoban.com/news/detail-796856.html
否则,需要插入2个字母,index+1。文章来源地址https://www.toymoban.com/news/detail-796856.html
代码:
public class Solution2645 {
public int addMinimum(String word) {
int index = 0;
int result = 0;
while (index < word.length()) {
if ("abc".equals(word.substring(index, index + Math.min(3, word.length() - index)))) {
index += 3;
continue;
}
String two = word.substring(index, index + Math.min(2, word.length() - index));
if ("ab".equals(two) || "bc".equals(two) || "ac".equals(two)) {
index += 2;
result += 1;
continue;
}
index += 1;
result += 2;
}
return result;
}
}
到了这里,关于LeetCode解法汇总2645. 构造有效字符串的最少插入数的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!