目录链接:
力扣编程题-解法汇总_分享+记录-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;
否则,需要插入2个字母,index+1。
代码:
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;
}
}