力扣刷题日记 2020/03/17

2020-03-17 16:05:31来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

力扣刷题日记 2020/03/17

         今天起 坚持每天记录一道力扣上比较有意思的题!

力扣1160:拼写单词

  题目链接:https://leetcode-cn.com/problems/find-words-that-can-be-formed-by-characters

 题干:

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

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

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

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

  示例 1:

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

 

 解题思路

  解法出处:https://leetcode-cn.com/problems/find-words-that-can-be-formed-by-characters/solution/ji-de-di-yi-ci-kan-bie-ren-yong-int26de-shi-hou-be/

  遇到有提示字符串仅包含小写(或者大写)英文字母的题,
  都可以试着考虑能不能构造长度为26的每个元素分别代表一个字母的数组,来简化计算

  对于这道题,用数组alph来保存字母表里每个字母出现的次数
  如法炮制,再对词汇表中的每个词汇都做一数组wordLi,比较数组wordLi与数组alph的对应位置

  如果wordLi中的都不大于alph,就说明该词可以被拼写出,长度计入结果
  如果wordLi其中有一个超过了alph,则说明不可以被拼写,直接跳至下一个(这里用到了带label的continue语法)

 

  代码:

class Solution {
    public int countCharacters(String[] words, String chars) {
        int[] alph = new int[26];
        for(char alphChar : chars.toCharArray()) {
            alph[(int)(alphChar - 'a')] += 1;
        }
        int totalLength = 0;
        a: for(String word : words) {
            int[] wordLi = new int[26];
            for(char wordChar : word.toCharArray()) {
                wordLi[(int)(wordChar - 'a')] += 1;
            }
            for(int i=0; i<26; i++) {
                if(wordLi[i] > alph[i]) {
                    continue a;
                }
            }
            totalLength += word.length();
        }
        return totalLength;
    }
}

原文链接:https://www.cnblogs.com/seizedays/p/12510367.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:SpringBoot引入第三方jar包或本地jar包的处理方式

下一篇:java基础知识