Given two integers
a and b, return any string s such that:s has length a + b and contains exactly a 'a' letters, and exactly b 'b' letters,
The substring 'aaa' does not occur in s, andThe substring
'bbb' does not occur in s.Example 1:
Input: a = 1, b = 2
Output: “abb”
Explanation: “abb”, “bab” and “bba” are all correct answers.
Example 2:
Input: a = 4, b = 1
Output: “aabaa”
Constraints:
0 <= a, b <= 100* It is guaranteed such an
s exists for the given a and b.题目大意:
给定两个整数代表ab的个数,生成一个字符串,字符串ab频数不能超过这2个数,不能有连续的aaa, bbb, 求此种字符串的最大长度
解题思路:
参考LeetCode 1405 Longest Happy String, 此题不用heap因为只有两种字符
解题步骤:
N/A
注意事项:
- 不能连续的处理
Python代码:
1 | def strWithout3a3b(self, a: int, b: int) -> str: |
算法分析:
时间复杂度为O(n),空间复杂度O(1)


