算法的重要性,我就不多说了吧,想去大厂,就必须要经过基础知识和业务逻辑面试+算法面试。所以,为了提高大家的算法能力,这个公众号后续每天带大家做一道算法题,题目就从LeetCode上面选 !
今天和大家聊的问题叫做 神奇字符串,我们先来看题面:
https://leetcode-cn.com/problems/magical-string/
神奇字符串 s 仅由 '1' 和 '2' 组成,并需要遵守下面的规则:
神奇字符串 s 的神奇之处在于,串联字符串中 '1' 和 '2' 的连续出现次数可以生成该字符串。
s 的前几个元素是 s = "1221121221221121122……" 。如果将 s 中连续的若干 1 和 2 进行分组,可以得到 "1 22 11 2 1 22 1 22 11 2 11 22 ......" 。每组中 1 或者 2 的出现次数分别是 "1 2 2 1 1 2 1 2 2 1 2 2 ......" 。上面的出现次数正是 s 自身。
给你一个整数 n ,返回在神奇字符串 s 的前 n 个数字中 1 的数目。
示例
示例 1:
输入:n = 6
输出:3
解释:神奇字符串 s 的前 6 个元素是 “122112”,它包含三个 1,因此返回 3 。
示例 2:
输入:n = 1
输出:1
解题
解题思路:
分为两个字符串:1表示原始字符串,2表示分组后的字符串
结合第一个字符串向第二个字符串中添加元素
结合第二个字符串向第一个字符串中添加元素。
class Solution {
public int magicalString(int n) {
if(n <= 0)
return 0;
if(n <= 3)
return 1;
StringBuilder base = new StringBuilder();
StringBuilder sub = new StringBuilder();
base.append("122");
sub.append("12");
int index = 0;
int temp = 0;
int counts = 1;
while (base.length() < n){
index = sub.length();
temp = base.charAt(index)-'0';
sub.append(temp);
if(temp==2){
temp = base.charAt(base.length()-1)-'0';
if(temp == 2){
base.append("11");
if(base.length() <= n)
counts += 2;
else
counts += 1;
}else {
base.append("22");
}
}else {//temp == 1
temp = base.charAt(base.length()-1)-'0';
if(temp == 2){
base.append("1");
counts += 1;
}else {
base.append("2");
}
}
}
return counts;
}
}
好了,今天的文章就到这里,如果觉得有所收获,请顺手点个在看或者转发吧,你们的支持是我最大的动力 。
上期推文: