当前位置:   article > 正文

【LeetCode每日一题】1160. 拼写单词_有一个字符串数据word和一个字符串chars c语言

有一个字符串数据word和一个字符串chars c语言

给你一份『词汇表』(字符串数组) words 和一张『字母表』(字符串) chars。

假如你可以用 chars 中的『字母』(字符)拼写出 words 中的某个『单词』(字符串),那么我们就认为你掌握了这个单词。

注意:每次拼写时,chars 中的每个字母都只能用一次。

返回词汇表 words 中你掌握的所有单词的 长度之和。

 

示例 1:

输入:words = ["cat","bt","hat","tree"], chars = "atach"
输出:6
解释: 
可以形成字符串 "cat" 和 "hat",所以答案是 3 + 3 = 6。
示例 2:

输入:words = ["hello","world","leetcode"], chars = "welldonehoneyr"
输出:10
解释:
可以形成字符串 "hello" 和 "world",所以答案是 5 + 5 = 10。
 

提示:

1 <= words.length <= 1000
1 <= words[i].length, chars.length <= 100
所有字符串中都仅包含小写英文字母

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/find-words-that-can-be-formed-by-characters
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

JAVA

  1. class Solution {
  2. public int countCharacters(String[] words, String chars) {
  3. int[] c = new int[26];
  4. for(char cc : chars.toCharArray()) {
  5. c[(int)(cc - 'a')] += 1;
  6. }
  7. int res = 0;
  8. a: for(String word : words) {
  9. int[] w = new int[26];
  10. for(char ww : word.toCharArray()) {
  11. w[(int)(ww - 'a')] += 1;
  12. }
  13. for(int i=0; i<26; i++) {
  14. if(w[i] > c[i]) {
  15. continue a;
  16. }
  17. }
  18. res += word.length();
  19. }
  20. return res;
  21. }
  22. }

C++

  1. int countCharacters(vector<string>& words, string chars) {
  2. vector<int> chars_count = count(chars); // 统计字母表的字母出现次数
  3. int res = 0;
  4. for (string& word : words) {
  5. vector<int> word_count = count(word); // 统计单词的字母出现次数
  6. if (contains(chars_count, word_count)) {
  7. res += word.length();
  8. }
  9. }
  10. return res;
  11. }
  12. // 检查字母表的字母出现次数是否覆盖单词的字母出现次数
  13. bool contains(vector<int>& chars_count, vector<int>& word_count) {
  14. for (int i = 0; i < 26; i++) {
  15. if (chars_count[i] < word_count[i]) {
  16. return false;
  17. }
  18. }
  19. return true;
  20. }
  21. // 统计 26 个字母出现的次数
  22. vector<int> count(string& word) {
  23. vector<int> counter(26, 0);
  24. for (char c : word) {
  25. counter[c-'a']++;
  26. }
  27. return counter;
  28. }

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/705319
推荐阅读
相关标签
  

闽ICP备14008679号