forked from gongluck/CVIP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
383.赎金信.cpp
52 lines (50 loc) · 1.08 KB
/
383.赎金信.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
/*
* @lc app=leetcode.cn id=383 lang=cpp
*
* [383] 赎金信
*/
// @lc code=start
class Solution
{
public:
bool canConstruct(string ransomNote, string magazine)
{
// std::unordered_map<char, int> charnums;
// for (const auto &c : magazine)
// {
// ++charnums[c];
// }
// for (const auto &c : ransomNote)
// {
// if (charnums.count(c) > 0)
// {
// --charnums[c];
// if (charnums[c] == 0)
// {
// charnums.erase(c);
// }
// }
// else
// {
// return false;
// }
// }
// return true;
//数组优化
int cns[26] = {0};
for (const auto &c : magazine)
{
++cns[c - 'a'];
}
for (const auto &c : ransomNote)
{
--cns[c - 'a'];
if (cns[c - 'a'] < 0)
{
return false;
}
}
return true;
}
};
// @lc code=end