1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-11 02:58:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/分割平衡字符串 [split-a-string-in-balanced-strings].html

46 lines
1.4 KiB
HTML
Raw Normal View History

2023-12-09 18:42:21 +08:00
<p><strong>平衡字符串</strong> 中,<code>'L'</code><code>'R'</code> 字符的数量是相同的。</p>
2022-03-27 20:37:52 +08:00
2023-12-09 18:42:21 +08:00
<p>给你一个平衡字符串&nbsp;<code>s</code>,请你将它分割成尽可能多的子字符串,并满足:</p>
2022-03-27 20:37:52 +08:00
2023-12-09 18:42:21 +08:00
<ul>
<li>每个子字符串都是平衡字符串。</li>
</ul>
2022-03-27 20:37:52 +08:00
<p>返回可以通过分割得到的平衡字符串的 <strong>最大数量</strong> <strong></strong></p>
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
<pre>
<strong>输入:</strong>s = "RLRRLLRLRL"
<strong>输出:</strong>4
<strong>解释:</strong>s 可以分割为 "RL"、"RRLL"、"RL"、"RL" ,每个子字符串中都包含相同数量的 'L' 和 'R' 。
</pre>
<p><strong>示例 2</strong></p>
<pre>
2023-12-09 18:42:21 +08:00
<strong>输入:</strong>s = "RLRRRLLRLL"
<strong>输出:</strong>2
<strong>解释:</strong>s 可以分割为 "RL"、"RRRLLRLL",每个子字符串中都包含相同数量的 'L' 和 'R' 。
注意s 无法分割为 "RL"、"RR"、"RL"、"LR"、"LL" 因为第 2 个和第 5 个子字符串不是平衡字符串。</pre>
2022-03-27 20:37:52 +08:00
<p><strong>示例 3</strong></p>
<pre>
<strong>输入:</strong>s = "LLLLRRRR"
<strong>输出:</strong>1
2023-12-09 18:42:21 +08:00
<strong>解释:</strong>s 只能保持原样 "LLLLRRRR" 。
2022-03-27 20:37:52 +08:00
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
2023-12-09 18:42:21 +08:00
<li><code>2 &lt;= s.length &lt;= 1000</code></li>
2022-03-27 20:37:52 +08:00
<li><code>s[i] = 'L' 或 'R'</code></li>
<li><code>s</code> 是一个 <strong>平衡</strong> 字符串</li>
</ul>