码迷,mamicode.com
首页 > 其他好文 > 详细

lc0503

时间:2020-05-03 17:03:48      阅读:68      评论:0      收藏:0      [点我收藏+]

标签:iter   leetcode   stripe   problems   container   def   vector   ring   tco   

? 748. 最短完整词

https://leetcode-cn.com/problems/shortest-completing-word/

描述

如果单词列表(words)中的一个单词包含牌照(licensePlate)中所有的字母,那么我们称之为完整词。在所有完整词中,最短的单词我们称之为最短完整词。

单词在匹配牌照中的字母时不区分大小写,比如牌照中的?"P"?依然可以匹配单词中的?"p"?字母。

我们保证一定存在一个最短完整词。当有多个单词都符合最短完整词的匹配条件时取单词列表中最靠前的一个。

牌照中可能包含多个相同的字符,比如说:对于牌照 "PP",单词?"pair"?无法匹配,但是?"supper"?可以匹配。


示例 1:

输入:licensePlate = "1s3 PSt", words = ["step", "steps", "stripe", "stepple"]
输出:"steps"
说明:最短完整词应该包括 "s"、"p"、"s" 以及 "t"。对于 "step" 它只包含一个 "s" 所以它不符合条件。同时在匹配过程中我们忽略牌照中的大小写。
?

示例 2:

输入:licensePlate = "1s3 456", words = ["looks", "pest", "stew", "show"]
输出:"pest"
说明:存在 3 个包含字母 "s" 且有着最短长度的完整词,但我们返回最先出现的完整词。
?
tt: 明明每个都??s 啊! 为什么不返回 looks 呢?

注意:
    
牌照(licensePlate)的长度在区域[1, 7]中。
牌照(licensePlate)将会包含数字、空格、或者字母(大写和小写)。
单词列表(words)长度在区间?[10, 1000]?中。
每一个单词?words[i]?都是小写,并且长度在区间?[1, 15]?中。
?

解答

我估计,是可以先把牌照里面的统计好,然后到目标单词里,一个个比对;

c

watch todo 2020-05-03 15:08

    string shortestCompletingWord(string licensePlate, vector<string>& words)
    {
        vector<int> letter(26, 0);
        int cnt = 0;
        for (auto c : licensePlate)
        {
            c = isupper(c) ? tolower(c) : c;
            if (islower(c))
            {
                letter[c - ‘a‘]++;
                cnt++;
            }
        }

        stable_sort(words.begin(), words.end(), [](const string& a, const string& b) { return a.size() < b.size(); });
        for (auto w : words)
        {
            auto letter_t = letter;
            int cnt_t = cnt;
            for (auto c : w)
            {
                if (letter_t[c - ‘a‘]-- <= 0) continue;
                if (--cnt_t == 0) return w;
            }
        }
        return {};
    }

作者:ikaruga
链接:https://leetcode-cn.com/problems/shortest-completing-word/solution/shortest-completing-word-by-ikaruga/
来源:力扣(LeetCode)
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

py

class Solution(object):
    def shortestCompletingWord(self, licensePlate, words):
        def count(itera):
            ans = [0] * 26
            for letter in itera:
                ans[ord(letter) - ord(‘a‘)] += 1
            return ans

        def dominates(c1, c2):
            return all(x1 >= x2 for x1, x2 in zip(c1, c2))

        ans = None
        target = count(c.lower() for c in licensePlate if c.isalpha())
        for word in words:
            if ((len(word) < len(ans) or ans is None) and
                    dominates(count(word.lower()), target)):
                ans = word

        return ans

作者:LeetCode
链接:https://leetcode-cn.com/problems/shortest-completing-word/solution/zui-duan-wan-zheng-ci-by-leetcode/
来源:力扣(LeetCode)
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

my py

class Solution(object):
    def shortestCompletingWord(self, licensePlate, words):
        def count(itera):
            ans = [0] * 26
            for letter in itera:
                ans[ord(letter) - ord(‘a‘)] += 1
            return ans

        def dominates(c1, c2):
            print("c1 is: ", c1)
            print("c2 is: ", c2)
            return all(x1 >= x2 for x1, x2 in zip(c1, c2))

        ans = None
        target = count(c.lower() for c in licensePlate if c.isalpha())
        for word in words:
            # tt i add: `ans is not None`
            if ((ans is not None and (len(word) < len(ans)) or ans is None) and
                    dominates(count(word.lower()), target)):
                ans = word

        return ans
‘‘‘
执行用时 :
132 ms
, 在所有 Python3 提交中击败了
20.39%
的用户
内存消耗 :
13.8 MB
, 在所有 Python3 提交中击败了
100.00%
的用户
‘‘‘

lc0503

标签:iter   leetcode   stripe   problems   container   def   vector   ring   tco   

原文地址:https://www.cnblogs.com/paulkg12/p/12822049.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!