leetcode984

Posted yxlsblog

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode984相关的知识,希望对你有一定的参考价值。

题目:

给定两个整数 A 和 B,返回任意字符串 S,要求满足:

  • S 的长度为 A + B,且正好包含 A 个 ‘a‘ 字母与 B 个 ‘b‘ 字母;
  • 子串 ‘aaa‘ 没有出现在 S 中;
  • 子串 ‘bbb‘ 没有出现在 S 中。

 

示例 1:

输入:A = 1, B = 2
输出:"abb"
解释:"abb", "bab" 和 "bba" 都是正确答案。

示例 2:

输入:A = 4, B = 1
输出:"aabaa"

 

提示:

  1. 0 <= A <= 100
  2. 0 <= B <= 100
  3. 对于给定的 A 和 B,保证存在满足要求的 S

解题思路:

1.如果A == B,直接返回abababa...即可

2.如果A>B,在A>B时,多加一个a,这样总会使得A == B(即剩余的a和b相同),然后再ababab...即可。

3.如果B>A,同2

 

代码

class Solution {
public:
    string strWithout3a3b(int A, int B) {
        string res = "";
        if(A == B){
            for(int i=0;i<A;i++){
                res += "ab";
            }
            return res;
        }
        if(A < B){
            while(A || B){
                if(B){
                    res += "b";
                    B--;
                }
                if(A<B){
                    res += b;
                    B--;
                }
                if(A){
                    res += a;
                    A--;
                }
            }
            return res;
        }
        if(A > B){
            while(A || B){
                if(A){
                    res += "a";
                    A--;
                }
                if(A>B){
                    res += "a";
                    A--;
                }
                if(B){
                    res += "b";
                    B--;
                }
            }
            return res;
        }
        return "ERROR!";
    }
};

 

相关知识:

贪心算法

 

以上是关于leetcode984的主要内容,如果未能解决你的问题,请参考以下文章

[leetcode]984. 不含 AAA 或 BBB 的字符串

Leetcode周赛从contest-121开始。(一般是10个contest写一篇文章)

codeforces 984B Minesweeper

codeforces 984 C. Finite or not?

LeetCode Weekly Contest 121

leetcode_1292. Maximum Side Length of a Square with Sum Less than or Equal to Threshold_[二维前缀和](代码片段