其他分享
首页 > 其他分享> > Leetcode 1763. 最长的美好子字符串 (枚举所有子串,状态压缩看字符串是否出现)

Leetcode 1763. 最长的美好子字符串 (枚举所有子串,状态压缩看字符串是否出现)

作者:互联网

枚举所有字符子串,然后用状态压缩压缩表示26个字符,可以在O(1)时间判断是否出现,时间复杂度是O(n^2)

class Solution {
public:
    string longestNiceSubstring(string s) {
        int maxPos = 0;
        int maxLen = 0;
        for (int i = 0; i < s.size(); i++) {
            int lower = 0, upper = 0;
            for (int j = i; j < s.size(); j++) {
                if (islower(s[j])) {
                    lower |= 1 << (s[j] - 'a');
                } else {
                    upper |= 1 << (s[j] - 'A');
                }
                if (lower == upper && j - i + 1 > maxLen) {
                    maxPos = i;
                    maxLen = j - i + 1;
                }
            }
        }
        return s.substr(maxPos, maxLen); 
    }
};

 

标签:lower,string,int,maxLen,字符串,1763,maxPos,Leetcode,size
来源: https://blog.csdn.net/wwxy1995/article/details/122764156