leet-code/src/main/java/leetcode/editor/cn/MaximumNumberOfBalloons.java
2022-02-13 21:47:52 +08:00

65 lines
1.5 KiB
Java
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.

//给你一个字符串 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)
}