zoukankan      html  css  js  c++  java
  • [Swift]LeetCode792. 匹配子序列的单词数 | Number of Matching Subsequences

    ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
    ➤微信公众号:山青咏芝(shanqingyongzhi)
    ➤博客园地址:山青咏芝(https://www.cnblogs.com/strengthen/
    ➤GitHub地址:https://github.com/strengthen/LeetCode
    ➤原文地址: https://www.cnblogs.com/strengthen/p/10547036.html 
    ➤如果链接不是山青咏芝的博客园地址,则可能是爬取作者的文章。
    ➤原文已修改更新!强烈建议点击原文地址阅读!支持作者!支持原创!
    ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★

    Given string S and a dictionary of words words, find the number of words[i] that is a subsequence of S.

    Example :
    Input: 
    S = "abcde"
    words = ["a", "bb", "acd", "ace"]
    Output: 3
    Explanation: There are three words in words that are a subsequence of S: "a", "acd", "ace".
    

    Note:

    • All words in words and S will only consists of lowercase letters.
    • The length of S will be in the range of [1, 50000].
    • The length of words will be in the range of [1, 5000].
    • The length of words[i] will be in the range of [1, 50].

    给定字符串 S 和单词字典 words, 求 words[i] 中是 S 的子序列的单词个数。

    示例:
    输入: 
    S = "abcde"
    words = ["a", "bb", "acd", "ace"]
    输出: 3
    解释: 有三个是 S 的子序列的单词: "a", "acd", "ace"。
    

    注意:

    • 所有在words和 S 里的单词都只由小写字母组成。
    • S 的长度在 [1, 50000]
    • words 的长度在 [1, 5000]
    • words[i]的长度在[1, 50]

    Runtime: 740 ms
    Memory Usage: 20 MB
     1 class Solution {
     2     func numMatchingSubseq(_ S: String, _ words: [String]) -> Int {
     3         let arrS:[Character] = Array(S)
     4         var res:Int = 0
     5         var n:Int = S.count
     6         var pass:Set<String> = Set<String>()
     7         var out:Set<String> = Set<String>()
     8         for word in words
     9         {
    10             let arrW:[Character] = Array(word)
    11             if pass.contains(word) || out.contains(word)
    12             {
    13                 if pass.contains(word) {res += 1}
    14                 continue
    15             }
    16             var i:Int = 0
    17             var j:Int = 0
    18             var m:Int = word.count
    19             while (i < n && j < m)
    20             {
    21                 if arrW[j] == arrS[i] {j += 1}
    22                 i += 1
    23             }
    24             if j == m 
    25             {
    26                 res += 1
    27                 pass.insert(word)
    28             }
    29             else
    30             {
    31                 out.insert(word)
    32             }            
    33         }
    34         return res
    35     }
    36 }

    1168ms

     1 class Solution {
     2     func numMatchingSubseq(_ S: String, _ words: [String]) -> Int {
     3         var indices = [Character: [Int]]()
     4         let S = Array(S.characters)
     5         for i in 0..<S.count {
     6             indices[S[i], default:[]].append(i)
     7         }
     8         
     9         func binarySearch(_ ch: Character, _ from: Int) -> Int {
    10             guard let arr = indices[ch] else { return -2 }
    11             if from > arr.last! { return -2 }
    12             
    13             var l = 0, r = arr.count - 1
    14             while l < r {
    15                 let mid = (l + r) / 2
    16                 if arr[mid] < from {
    17                     l = mid + 1
    18                 } else {
    19                     r = mid
    20                 }
    21             }
    22             return arr[r]
    23         }
    24         
    25         var res = 0
    26         for w in words {
    27             var from = 0
    28             for ch in w.characters {
    29                 from = binarySearch(ch, from) + 1
    30                 if from < 0 { break }
    31             }
    32             if from >= 0 { res += 1 }
    33         }
    34         return res
    35     }
    36 }
  • 相关阅读:
    要离职了。
    上海找工作经历
    1.6. 三基色LED
    1.5. 板载LED PWM模式
    1.4. 板载LED控制
    1.3. 硬件篇之IO口(视频连接)
    1.2 Hello World
    1.8. 数码管
    ESP32编译自己的micropython固件
    1.1 准备工作
  • 原文地址:https://www.cnblogs.com/strengthen/p/10547036.html
Copyright © 2011-2022 走看看