3291. 形成目标字符串需要的最少字符串数 I

Powered by:NEFU AB-IN

Link

文章目录

  • [3291. 形成目标字符串需要的最少字符串数 I](#3291. 形成目标字符串需要的最少字符串数 I)

3291. 形成目标字符串需要的最少字符串数 I

题意

给你一个字符串数组 words 和一个字符串 target。

如果字符串 x 是 words 中 任意 字符串的前缀,则认为 x 是一个 有效 字符串。

现计划通过 连接 有效字符串形成 target ,请你计算并返回需要连接的 最少 字符串数量。如果无法通过这种方式形成 target,则返回 -1。

思路

  1. Trie + 记忆化搜索
    首先就是把所有的word全部放进trie,然后进行记忆化搜索即可
    从target的初始下标开始,去trie中匹配,如果到j匹配上了,然后就dfs(j + 1),如果匹配不上,直接break
    记录每个状态的能被最少几个前缀组成,每次用之后的dfs的值更新这个值即可

代码

python 复制代码
# 3.8.9 import
import random
from collections import Counter, defaultdict, deque
from datetime import datetime, timedelta
from functools import lru_cache, reduce
from heapq import heapify, heappop, heappush, nlargest, nsmallest
from itertools import combinations, compress, permutations, starmap, tee
from math import ceil, comb, fabs, floor, gcd, hypot, log, perm, sqrt
from string import ascii_lowercase, ascii_uppercase
from sys import exit, setrecursionlimit, stdin
from typing import Any, Callable, Dict, List, Optional, Tuple, TypeVar

# Constants
TYPE = TypeVar('TYPE')
N = int(2e5 + 10)
M = int(20)
INF = int(1e12)
OFFSET = int(100)
MOD = int(1e9 + 7)

# Set recursion limit
setrecursionlimit(int(2e9))


class Arr:
    array = staticmethod(lambda x=0, size=N: [x() if callable(x) else x for _ in range(size)])
    array2d = staticmethod(lambda x=0, rows=N, cols=M: [Arr.array(x, cols) for _ in range(rows)])
    graph = staticmethod(lambda size=N: [[] for _ in range(size)])


class Math:
    max = staticmethod(lambda a, b: a if a > b else b)
    min = staticmethod(lambda a, b: a if a < b else b)


class Std:
    class TrieNode:
        """TrieNode class can quickly process string prefixes, a common feature used in applications like autocomplete and spell checking."""
        _sid_cnt = 0  # sid counter, representing string index starting from 0

        def __init__(self):
            """Initialize children dictionary and cost. The trie tree is a 26-ary tree."""
            self.children_ = {}
            self._sid = -1  # Unique ID for the node, -1 if not assigned

        def add(self, word: str) -> int:
            """Add a word to the trie with the associated cost and return a unique ID."""
            node = self
            for c in word:
                if c not in node.children_:
                    node.children_[c] = Std.TrieNode()
                node = node.children_[c]
            return node._sid

# --------------------------------------------------------------- Division line ------------------------------------------------------------------


class Solution:
    def minValidStrings(self, words: List[str], target: str) -> int:
        n = len(target)
        trie = Std.TrieNode()

        for word in words:
            trie.add(word)

        @lru_cache(None)
        def dfs(i: int) -> int:
            nonlocal trie
            if i == n:
                return 0
            res = INF

            node = trie
            for j in range(i, n):
                c = target[j]
                if c not in node.children_:
                    break
                sub_res = dfs(j + 1)
                res = Math.min(res, sub_res + 1)
                node = node.children_[c]

            return res

        result = dfs(0)
        dfs.cache_clear()
        return result if result != INF else -1
相关推荐
FreakStudio2 小时前
全网最适合入门的面向对象编程教程:50 Python函数方法与接口-接口和抽象基类
python·嵌入式·面向对象·电子diy
redcocal3 小时前
地平线秋招
python·嵌入式硬件·算法·fpga开发·求职招聘
artificiali4 小时前
Anaconda配置pytorch的基本操作
人工智能·pytorch·python
RaidenQ4 小时前
2024.9.13 Python与图像处理新国大EE5731课程大作业,索贝尔算子计算边缘,高斯核模糊边缘,Haar小波计算边缘
图像处理·python·算法·课程设计
花生了什么树~.4 小时前
python基础知识(六)--字典遍历、公共运算符、公共方法、函数、变量分类、参数分类、拆包、引用
开发语言·python
Trouvaille ~4 小时前
【Python篇】深度探索NumPy(下篇):从科学计算到机器学习的高效实战技巧
图像处理·python·机器学习·numpy·信号处理·时间序列分析·科学计算
爆更小小刘4 小时前
Python基础语法(3)下
开发语言·python
哪 吒5 小时前
华为OD机试 - 第 K 个字母在原来字符串的索引(Python/JS/C/C++ 2024 E卷 100分)
javascript·python·华为od
憨憨小白5 小时前
Python 的集合类型
开发语言·python·青少年编程·少儿编程
白杆杆红伞伞5 小时前
01_快速入门
python·pandas