leetcode1702--修改后的最大二进制数

1. 题意

给定二进制串,你可以执行下面的操作任意次,求能取得的最大值。

  • 00->10
  • 10->01

leetcode1702--修改后的最大二进制数

2. 题解

找到第一个0的位置,其后面的0都可以通过变换(2)与 1 1 1交换而都位于前面。再对其进行变换(1)。

  • 我的
cpp 复制代码
class Solution {
public:
    string maximumBinaryString(string binary) {
        string ans;
        int p = 0;
        int sz = binary.size();
        while( p < sz && binary[p] == '1')
            p++;
        int b = p;

        if (p == sz)
            return binary;
        int pre_z = 0;

        while ( p < sz && binary[p] == '0')
            p++, pre_z++;

        int suf_o = 0;
        for (int i = p; i < sz; ++i) {
            if ( binary[i] == '1')
                suf_o++;
            else
                pre_z++;
        }

        ans.append(b + pre_z - 1, '1');
        ans.push_back('0');
        ans.append(suf_o, '1');
        return ans;
    }
};
  • 官解
cpp 复制代码
class Solution {
public:
    string maximumBinaryString(string binary) {
        int n = binary.size();
        int j = 0;
        for (int i = 0; i < n; i++) {
            if (binary[i] == '0') {
                while (j <= i || (j < n && binary[j] == '1')) {
                    j++;
                }
                if (j < n) {
                    binary[j] = '1';
                    binary[i] = '1';
                    binary[i + 1] = '0';
                }
            }
        }
        return binary;
    }
};

作者:力扣官方题解
链接:https://leetcode.cn/problems/maximum-binary-string-after-change/solutions/2726979/xiu-gai-hou-de-zui-da-er-jin-zhi-zi-fu-c-put3/
来源:力扣(LeetCode)
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
相关推荐
神里流~霜灭2 天前
蓝桥备赛指南(12)· 省赛(构造or枚举)
c语言·数据结构·c++·算法·枚举·蓝桥·构造
_extraordinary_7 天前
笔试专题(四)
算法·动态规划·贪心·模拟·排序·双指针
QuantumStack10 天前
【C++ 真题】P9749 [CSP-J 2023] 公路
开发语言·c++·算法·贪心
奔跑的废柴16 天前
LeetCode 452. 用最少数量的箭引爆气球 java题解
java·算法·leetcode·贪心算法·贪心
_extraordinary_22 天前
笔试刷题专题(一)
动态规划·字符串·贪心··用字符串模拟栈
柠石榴1 个月前
【练习】【贪心】力扣452. 用最少数量的箭引爆气球
c++·算法·leetcode·贪心
柠石榴1 个月前
【练习】【贪心】力扣45. 跳跃游戏 II
c++·算法·leetcode·贪心
L_M_TY2 个月前
E. Correct Placement
算法·贪心·排序·双指针
m0_675988232 个月前
Leetcode45:跳跃游戏 II
算法·leetcode·动态规划·贪心·python3
Dong雨2 个月前
力扣hot100-->滑动窗口、贪心
贪心·滑动窗口·力扣hot100