Given a string s containing only lower case English letters and the '?' character, convert all the '?' characters into lower case letters such that the final string does not contain any consecutive repeating characters. You cannot modify the non '?' characters.

It is guaranteed that there are no consecutive repeating characters in the given string except for '?'.

Return the final string after all the conversions (possibly zero) have been made. If there is more than one solution, return any of them. It can be shown that an answer is always possible with the given constraints.

 

Example 1:

Input: s = "?zs"
Output: "azs"
Explanation: There are 25 solutions for this problem. From "azs" to "yzs", all are valid. Only "z" is an invalid modification as the string will consist of consecutive repeating characters in "zzs".
Example 2:

Input: s = "ubv?w"
Output: "ubvaw"
Explanation: There are 24 solutions for this problem. Only "v" and "w" are invalid modifications as the strings will consist of consecutive repeating characters in "ubvvw" and "ubvww".
Example 3:

Input: s = "j?qg??b"
Output: "jaqgacb"
Example 4:

Input: s = "??yw?ipkj?"
Output: "acywaipkja"
 

Constraints:

1 <= s.length <= 100
s contains only lower case English letters and '?'.

这题找出全是’?‘的子串,然后根据子串前后的字符来确定应当替换成什么才能符合条件。


class ReplaceAllQuestionMarkToAvoidConsecutiveRepeatingCharacters : public Solution {
public:
    void Exec() {
        auto res = modifyString("j?qg??b");
    }
    string modifyString(string s) {
        int markBegin = -1, markEnd = -1;
        char markBefore = 0, markAfter = 0;

        for (int i = 0; i < s.size(); i++) {
            if (s[i] == '?') {
                if (markBegin < 0) {
                    markBegin = i;
                    if (i > 0) {
                        markBefore = s[i - 1];
                    }
                }
                if (i == s.size() - 1) {
                    markEnd = i;
                }
            } else {
                if (markBegin >= 0) {
                    markEnd = i - 1;
                    markAfter = s[i];
                }
            }
            if (markBegin >= 0 && markEnd >= 0) {
                char c = 'a';
                for (int j = markBegin; j <= markEnd; j++) {
                    for (; ; ) {
                        if (c > 'z') c = 'a';
                        if (c == markBefore || c == markAfter) {
                            c++;
                            continue;
                        }
                        s[j] = c++;
                        break;
                    }
                }
                markBegin = -1;
                markEnd = -1;
                markBefore = 0;
                markAfter = 0;
            }
        }
        return s;
    }
};
共 0 条回复
暂时没有人回复哦,赶紧抢沙发
发表新回复

作者

sryan
today is a good day