1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-10 18:48:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/特殊的二进制序列 [special-binary-string].html
2022-03-29 12:43:11 +08:00

28 lines
1.2 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<p>特殊的二进制序列是具有以下两个性质的二进制序列:</p>
<ul>
<li>0 的数量与 1 的数量相等。</li>
<li>二进制序列的每一个前缀码中 1 的数量要大于等于 0 的数量。</li>
</ul>
<p>给定一个特殊的二进制序列&nbsp;<code>S</code>,以字符串形式表示。定义一个<em>操作 </em>为首先选择&nbsp;<code>S</code>&nbsp;的两个连续且非空的特殊的子串,然后将它们交换。(两个子串为连续的当且仅当第一个子串的最后一个字符恰好为第二个子串的第一个字符的前一个字符。)</p>
<p>在任意次数的操作之后,交换后的字符串按照字典序排列的最大的结果是什么?</p>
<p><strong>示例 1:</strong></p>
<pre>
<strong>输入:</strong> S = &quot;11011000&quot;
<strong>输出:</strong> &quot;11100100&quot;
<strong>解释:</strong>
将子串 &quot;10&quot; 在S[1]出现) 和 &quot;1100&quot; 在S[3]出现)进行交换。
这是在进行若干次操作后按字典序排列最大的结果。
</pre>
<p><strong>说明:</strong></p>
<ol>
<li><code>S</code>&nbsp;的长度不超过&nbsp;<code>50</code></li>
<li><code>S</code>&nbsp;保证为一个满足上述定义的<em>特殊 </em>的二进制序列。</li>
</ol>