leetcode 761. Special Binary String

本文探讨了特殊二进制字符串的性质与操作,提出了通过交换连续的特殊子字符串来生成字典序最大字符串的算法。该算法首先解析输入字符串为多个特殊子字符串,然后按字典序逆序排列并重新组合,最终返回重构后的最大字符串。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Special binary strings are binary strings with the following two properties:

 

  • The number of 0's is equal to the number of 1's.
  • Every prefix of the binary string has at least as many 1's as 0's.

 

Given a special string S, a move consists of choosing two consecutive, non-empty, special substrings of S, and swapping them. (Two strings are consecutive if the last character of the first string is exactly one index before the first character of the second string.)

At the end of any number of moves, what is the lexicographically largest resulting string possible?

Example 1:

Input: S = "11011000"
Output: "11100100"
Explanation:
The strings "10" [occuring at S[1]] and "1100" [at S[3]] are swapped.
This is the lexicographically largest string possible after some number of swaps.

 

Note:

  1. S has length at most 50.
  2. S is guaranteed to be a specialbinary string as defined above.
class Solution {
public:
    string makeLargestSpecial(string S) 
    {
        set<string> strs ;
        string res ;
        for(int k = 2 ; k <= S.size() ; k++)
        {
            for(int i = 0 ; i <= S.size() - k ; ++i)
            {
                string prev = S.substr(0 , i) , suff = S.substr(i + k) , medium = S.substr(i , k) ;
                makeLargestSpecial(prev , medium , suff , strs) ;
            }
        }
        return res = *next(strs.begin() , strs.size() - 1) ;
    }
    
    void makeLargestSpecial(string prev , string s , string suff , set<string>& strs)
    {
        for(int i = 1 ; i < s.size() ; ++i)
        {
            string medium = s.substr(i) + s.substr(0 , i) ;
            strs.insert(prev + medium + suff) ;
        }
    }
};
class Solution {
public:
    string makeLargestSpecial(string S) {
        int cnt = 0, i = 0;
        vector<string> v;
        string res = "";
        for (int j = 0; j < S.size(); ++j) {
            cnt += (S[j] == '1') ? 1 : -1;
            if (cnt == 0) {
                v.push_back('1' + makeLargestSpecial(S.substr(i + 1, j - i - 1)) + '0');
                i = j + 1;
            }
        }
        sort(v.begin(), v.end(), greater<string>());
        for (int i = 0; i < v.size(); ++i) res += v[i];
        return res;
    }
};

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值