分割平衡字符串
| Category | Difficulty | Likes | Dislikes |
|---|---|---|---|
| algorithms | Easy (84.69%) | 203 | - |
<details style="color: rgb(225, 228, 232); font-family: -apple-system, "system-ui", "Segoe WPC", "Segoe UI", system-ui, Ubuntu, "Droid Sans", sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;"><summary><strong>Tags</strong></summary><p style="margin-top: 0px; margin-bottom: 0.7em;"><a href="https://leetcode.com/tag/Unknown" title="https://leetcode.com/tag/Unknown" style="color: var(--vscode-textLink-foreground); text-decoration: none;"><code style="color: var(--vscode-textLink-foreground); font-family: var(--vscode-editor-font-family, "SF Mono", Monaco, Menlo, Consolas, "Ubuntu Mono", "Liberation Mono", "DejaVu Sans Mono", "Courier New", monospace); font-size: 1em; line-height: 1.357em; white-space: pre-wrap;"></code></a></p></details>
<details style="color: rgb(225, 228, 232); font-family: -apple-system, "system-ui", "Segoe WPC", "Segoe UI", system-ui, Ubuntu, "Droid Sans", sans-serif; font-size: 14px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial;"><summary><strong>Companies</strong></summary><p style="margin-top: 0px; margin-bottom: 0.7em;"><code style="color: var(--vscode-textPreformat-foreground); font-family: var(--vscode-editor-font-family, "SF Mono", Monaco, Menlo, Consolas, "Ubuntu Mono", "Liberation Mono", "DejaVu Sans Mono", "Courier New", monospace); font-size: 1em; line-height: 1.357em; white-space: pre-wrap;"></code></p></details>
在一个 平衡字符串 中,'L' 和 'R' 字符的数量是相同的。
给你一个平衡字符串 s,请你将它分割成尽可能多的平衡字符串。
注意:分割得到的每个字符串都必须是平衡字符串,且分割得到的平衡字符串是原平衡字符串的连续子串。
返回可以通过分割得到的平衡字符串的 最大数量 。
示例 1:
输入:s = "RLRRLLRLRL"
输出:4
解释:s 可以分割为 "RL"、"RRLL"、"RL"、"RL" ,每个子字符串中都包含相同数量的 'L' 和 'R' 。示例 2:
输入:s = "RLLLLRRRLR"
输出:3
解释:s 可以分割为 "RL"、"LLLRRR"、"LR" ,每个子字符串中都包含相同数量的 'L' 和 'R' 。示例 3:
输入:s = "LLLLRRRR"
输出:1
解释:s 只能保持原样 "LLLLRRRR".示例 4:
输入:s = "RLRRRLLRLL"
输出:2
解释:s 可以分割为 "RL"、"RRRLLRLL" ,每个子字符串中都包含相同数量的 'L' 和 'R' 。提示:
1 <= s.length <= 1000s[i] = 'L' 或 'R's是一个 平衡 字符串
/*
* @Author: 仲灏<izhaong@outlook.com>🌶🌶🌶
* @Date: 2022-11-10 14:14:37
* @LastEditTime: 2022-11-10 14:19:24
* @LastEditors: 仲灏<izhaong@outlook.com>🌶🌶🌶
* @Description:
* @FilePath: /imooc-jira/Users/izhaong/izhaong/Project_me/leetcode/1221.分割平衡字符串.js
*/
/*
* @lc app=leetcode.cn id=1221 lang=javascript
*
* [1221] 分割平衡字符串
*
* https://leetcode.cn/problems/split-a-string-in-balanced-strings/description/
*
* algorithms
* Easy (84.69%)
* Likes: 203
* Dislikes: 0
* Total Accepted: 93K
* Total Submissions: 109.8K
* Testcase Example: '"RLRRLLRLRL"'
*
* 在一个 平衡字符串 中,'L' 和 'R' 字符的数量是相同的。
*
* 给你一个平衡字符串 s,请你将它分割成尽可能多的平衡字符串。
*
* 注意:分割得到的每个字符串都必须是平衡字符串,且分割得到的平衡字符串是原平衡字符串的连续子串。
*
* 返回可以通过分割得到的平衡字符串的 最大数量 。
*
*
*
* 示例 1:
*
*
* 输入:s = "RLRRLLRLRL"
* 输出:4
* 解释:s 可以分割为 "RL"、"RRLL"、"RL"、"RL" ,每个子字符串中都包含相同数量的 'L' 和 'R' 。
*
*
* 示例 2:
*
*
* 输入:s = "RLLLLRRRLR"
* 输出:3
* 解释:s 可以分割为 "RL"、"LLLRRR"、"LR" ,每个子字符串中都包含相同数量的 'L' 和 'R' 。
*
*
* 示例 3:
*
*
* 输入:s = "LLLLRRRR"
* 输出:1
* 解释:s 只能保持原样 "LLLLRRRR".
*
*
* 示例 4:
*
*
* 输入:s = "RLRRRLLRLL"
* 输出:2
* 解释:s 可以分割为 "RL"、"RRRLLRLL" ,每个子字符串中都包含相同数量的 'L' 和 'R' 。
*
*
*
*
* 提示:
*
*
* 1 <= s.length <= 1000
* s[i] = 'L' 或 'R'
* s 是一个 平衡 字符串
*
*
*/
// @lc code=start
/**
* @param {string} s
* @return {number}
*/
var balancedStringSplit = function(s) {
let r = 0
let l = 0
let sum = 0
for (let i = 0; i < s.length; i++) {
s[i] === "R" ? r++ : l++
if(r === l && r) {
sum ++
r = 0
l = 0
}
}
return sum
};
// @lc code=end