1189:“气球” 的最大数量
This commit is contained in:
parent
bf53ed4568
commit
6b34fcd0df
@ -0,0 +1,65 @@
|
|||||||
|
//给你一个字符串 text,你需要使用 text 中的字母来拼凑尽可能多的单词 "balloon"(气球)。
|
||||||
|
//
|
||||||
|
// 字符串 text 中的每个字母最多只能被使用一次。请你返回最多可以拼凑出多少个单词 "balloon"。
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
// 示例 1:
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
// 输入:text = "nlaebolko"
|
||||||
|
//输出:1
|
||||||
|
//
|
||||||
|
//
|
||||||
|
// 示例 2:
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
// 输入:text = "loonbalxballpoon"
|
||||||
|
//输出:2
|
||||||
|
//
|
||||||
|
//
|
||||||
|
// 示例 3:
|
||||||
|
//
|
||||||
|
// 输入:text = "leetcode"
|
||||||
|
//输出:0
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//
|
||||||
|
// 提示:
|
||||||
|
//
|
||||||
|
//
|
||||||
|
// 1 <= text.length <= 10^4
|
||||||
|
// text 全部由小写英文字母组成
|
||||||
|
//
|
||||||
|
// Related Topics 哈希表 字符串 计数 👍 102 👎 0
|
||||||
|
|
||||||
|
package leetcode.editor.cn;
|
||||||
|
|
||||||
|
//1189:“气球” 的最大数量
|
||||||
|
class MaximumNumberOfBalloons {
|
||||||
|
public static void main(String[] args) {
|
||||||
|
//测试代码
|
||||||
|
Solution solution = new MaximumNumberOfBalloons().new Solution();
|
||||||
|
}
|
||||||
|
|
||||||
|
//力扣代码
|
||||||
|
//leetcode submit region begin(Prohibit modification and deletion)
|
||||||
|
class Solution {
|
||||||
|
public int maxNumberOfBalloons(String text) {
|
||||||
|
int[] arrs = new int[26];
|
||||||
|
for (char ch : text.toCharArray()) {
|
||||||
|
arrs[ch - 'a']++;
|
||||||
|
}
|
||||||
|
int count = Math.min(arrs[0], arrs[1]);
|
||||||
|
count = Math.min(count, arrs['l' - 'a'] / 2);
|
||||||
|
count = Math.min(count, arrs['o' - 'a'] / 2);
|
||||||
|
count = Math.min(count, arrs['n' - 'a']);
|
||||||
|
return count;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
//leetcode submit region end(Prohibit modification and deletion)
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,37 @@
|
|||||||
|
<p>给你一个字符串 <code>text</code>,你需要使用 <code>text</code> 中的字母来拼凑尽可能多的单词 <strong>"balloon"(气球)</strong>。</p>
|
||||||
|
|
||||||
|
<p>字符串 <code>text</code> 中的每个字母最多只能被使用一次。请你返回最多可以拼凑出多少个单词 <strong>"balloon"</strong>。</p>
|
||||||
|
|
||||||
|
<p> </p>
|
||||||
|
|
||||||
|
<p><strong>示例 1:</strong></p>
|
||||||
|
|
||||||
|
<p><strong><img alt="" src="https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2019/09/14/1536_ex1_upd.jpeg" style="height: 35px; width: 154px;"></strong></p>
|
||||||
|
|
||||||
|
<pre><strong>输入:</strong>text = "nlaebolko"
|
||||||
|
<strong>输出:</strong>1
|
||||||
|
</pre>
|
||||||
|
|
||||||
|
<p><strong>示例 2:</strong></p>
|
||||||
|
|
||||||
|
<p><strong><img alt="" src="https://assets.leetcode-cn.com/aliyun-lc-upload/uploads/2019/09/14/1536_ex2_upd.jpeg" style="height: 35px; width: 233px;"></strong></p>
|
||||||
|
|
||||||
|
<pre><strong>输入:</strong>text = "loonbalxballpoon"
|
||||||
|
<strong>输出:</strong>2
|
||||||
|
</pre>
|
||||||
|
|
||||||
|
<p><strong>示例 3:</strong></p>
|
||||||
|
|
||||||
|
<pre><strong>输入:</strong>text = "leetcode"
|
||||||
|
<strong>输出:</strong>0
|
||||||
|
</pre>
|
||||||
|
|
||||||
|
<p> </p>
|
||||||
|
|
||||||
|
<p><strong>提示:</strong></p>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li><code>1 <= text.length <= 10^4</code></li>
|
||||||
|
<li><code>text</code> 全部由小写英文字母组成</li>
|
||||||
|
</ul>
|
||||||
|
<div><div>Related Topics</div><div><li>哈希表</li><li>字符串</li><li>计数</li></div></div><br><div><li>👍 102</li><li>👎 0</li></div>
|
Loading…
Reference in New Issue
Block a user