目录

1178:猜字谜(2233 分)

力扣第 152 场周赛第 4 题

题目

外国友人仿照中国字谜设计了一个英文版猜字谜小游戏,请你来猜猜看吧。

字谜的迷面 puzzle 按字符串形式给出,如果一个单词 word 符合下面两个条件,那么它就可以算作谜底:

  • 单词 word 中包含谜面 puzzle 的第一个字母。
  • 单词 word 中的每一个字母都可以在谜面 puzzle 中找到。
    例如,如果字谜的谜面是 "abcdefg",那么可以作为谜底的单词有 "faced", "cabbage", 和 "baggage";而 "beefed"(不含字母 "a")以及 "based"(其中的 "s" 没有出现在谜面中)都不能作为谜底。

返回一个答案数组 answer,数组中的每个元素 answer[i] 是在给出的单词列表 words 中可以作为字谜迷面 puzzles[i] 所对应的谜底的单词数目。

示例:

输入:
words = ["aaaa","asas","able","ability","actt","actor","access"],
puzzles = ["aboveyz","abrodyz","abslute","absoryz","actresz","gaswxyz"]
输出:[1,1,3,2,4,0]
解释:
1 个单词可以作为 "aboveyz" 的谜底 : "aaaa"
1 个单词可以作为 "abrodyz" 的谜底 : "aaaa"
3 个单词可以作为 "abslute" 的谜底 : "aaaa", "asas", "able"
2 个单词可以作为 "absoryz" 的谜底 : "aaaa", "asas"
4 个单词可以作为 "actresz" 的谜底 : "aaaa", "asas", "actt", "access"
没有单词可以作为 "gaswxyz" 的谜底,因为列表中的单词都不含字母 'g'。

提示:

  • 1 <= words.length <= 10^5
  • 4 <= words[i].length <= 50
  • 1 <= puzzles.length <= 10^4
  • puzzles[i].length == 7
  • words[i][j], puzzles[i][j] 都是小写英文字母。
  • 每个 puzzles[i] 所包含的字符都不重复。

分析

#1

先试试暴力解法,对每个 puzzle,遍历每个 word 判断是否满足条件即可。

1
2
3
4
5
6
7
def findNumOfValidWords(self, words: List[str], puzzles: List[str]) -> List[int]:
	res, words = [], [set(word) for word in words]
	for puzzle in puzzles:
		puz = set(puzzle)
		cnt = sum(puzzle[0] in word and puz >= word for word in words)
		res.append(cnt)
	return res

果然超时了

#2

puzzles 和 words 可能的个数太多了,全部遍历很耗时,考虑限制搜索范围。

可以直接把 key=''.join(sorted(set(word))) 作为表示 word 的唯一 key,保存在哈希表。

那么 word 可以作为 puzzle 的谜底,等价于 word 的 key 是 puzzle 的某个含有 puzzle[0] 的子序列的 key。

因此对于某个 puzzle,遍历含有 puzzle[0] 的子序列 sub,累计 key 相同的 word 个数即可。

生成字符串的所有子序列类似于 0078 ,可以递推得到。

解答

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
def findNumOfValidWords(self, words: List[str], puzzles: List[str]) -> List[int]:
	res, d = [], defaultdict(int)
	gen_key = lambda x: ''.join(sorted(x))
	for word in words:
		d[gen_key(set(word))] += 1
	for puzzle in puzzles:
		subs = [puzzle[0]]
		for char in puzzle[1:]:
			subs += [sub+char for sub in subs]
		res.append(sum(d[gen_key(sub)] for sub in subs))
	return res

760 ms