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)/使二进制字符串变美丽的最少修改次数 [minimum-number-of-changes-to-make-binary-string-beautiful].html
2023-11-03 23:14:24 +08:00

53 lines
1.9 KiB
HTML
Raw Permalink 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>给你一个长度为偶数下标从 <strong>0</strong>&nbsp;开始的二进制字符串&nbsp;<code>s</code>&nbsp;</p>
<p>如果可以将一个字符串分割成一个或者更多满足以下条件的子字符串,那么我们称这个字符串是 <strong>美丽的</strong>&nbsp;</p>
<ul>
<li>每个子字符串的长度都是 <strong>偶数</strong>&nbsp;</li>
<li>每个子字符串都 <strong></strong>&nbsp;包含 <code>1</code>&nbsp;<strong></strong>&nbsp;包含 <code>0</code>&nbsp;</li>
</ul>
<p>你可以将 <code>s</code>&nbsp;中任一字符改成&nbsp;<code>0</code>&nbsp;或者&nbsp;<code>1</code>&nbsp;</p>
<p>请你返回让字符串 <code>s</code>&nbsp;美丽的<strong>&nbsp;最少</strong>&nbsp;字符修改次数。</p>
<p>&nbsp;</p>
<p><strong class="example">示例 1</strong></p>
<pre>
<b>输入:</b>s = "1001"
<b>输出:</b>2
<b>解释:</b>我们将 s[1] 改为 1 ,且将 s[3] 改为 0 ,得到字符串 "1100" 。
字符串 "1100" 是美丽的,因为我们可以将它分割成 "11|00" 。
将字符串变美丽最少需要 2 次修改。
</pre>
<p><strong class="example">示例 2</strong></p>
<pre>
<b>输入:</b>s = "10"
<b>输出:</b>1
<b>解释:</b>我们将 s[1] 改为 1 ,得到字符串 "11" 。
字符串 "11" 是美丽的,因为它已经是美丽的。
将字符串变美丽最少需要 1 次修改。
</pre>
<p><strong class="example">示例 3</strong></p>
<pre>
<b>输入:</b>s = "0000"
<b>输出:</b>0
<b>解释:</b>不需要进行任何修改,字符串 "0000" 已经是美丽字符串。
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>2 &lt;= s.length &lt;= 10<sup>5</sup></code></li>
<li><code>s</code>&nbsp;的长度为偶数。</li>
<li><code>s[i]</code>&nbsp;要么是&nbsp;<code>'0'</code>&nbsp;,要么是&nbsp;<code>'1'</code></li>
</ul>