-
Notifications
You must be signed in to change notification settings - Fork 0
/
1189.气球-的最大数量.cpp
90 lines (88 loc) · 1.65 KB
/
1189.气球-的最大数量.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/*
* @lc app=leetcode.cn id=1189 lang=cpp
*
* [1189] “气球” 的最大数量
*
* https://leetcode-cn.com/problems/maximum-number-of-balloons/description/
*
* algorithms
* Easy (63.36%)
* Likes: 24
* Dislikes: 0
* Total Accepted: 8.2K
* Total Submissions: 12.9K
* Testcase Example: '"nlaebolko"'
*
* 给你一个字符串 text,你需要使用 text 中的字母来拼凑尽可能多的单词 "balloon"(气球)。
*
* 字符串 text 中的每个字母最多只能被使用一次。请你返回最多可以拼凑出多少个单词 "balloon"。
*
*
*
* 示例 1:
*
*
*
* 输入:text = "nlaebolko"
* 输出:1
*
*
* 示例 2:
*
*
*
* 输入:text = "loonbalxballpoon"
* 输出:2
*
*
* 示例 3:
*
* 输入:text = "leetcode"
* 输出:0
*
*
*
*
* 提示:
*
*
* 1 <= text.length <= 10^4
* text 全部由小写英文字母组成
*
*
*/
// @lc code=start
#include <string>
using namespace std;
class Solution {
public:
int maxNumberOfBalloons(string text) {
int b=0,a=0,l=0,o=0,n=0;
for(int i = 0;i<text.size(); ++i){
switch (text[i])
{
case 'b':
b++;
break;
case 'a':
a++;
break;
case 'l':
l++;
break;
case 'o':
o++;
break;
case 'n':
n++;
break;
default:
break;
}
}
l /= 2;
o /= 2;
return min(a,min(b,min(l,min(o,n))));
}
};
// @lc code=end