mirror of
				https://gitee.com/coder-xiaomo/leetcode-problemset
				synced 2025-11-04 03:33:12 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			40 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<p>We are given <code>n</code> different types of <code>stickers</code>. Each sticker has a lowercase English word on it.</p>
 | 
						|
 | 
						|
<p>You would like to spell out the given string <code>target</code> by cutting individual letters from your collection of stickers and rearranging them. You can use each sticker more than once if you want, and you have infinite quantities of each sticker.</p>
 | 
						|
 | 
						|
<p>Return <em>the minimum number of stickers that you need to spell out </em><code>target</code>. If the task is impossible, return <code>-1</code>.</p>
 | 
						|
 | 
						|
<p><strong>Note:</strong> In all test cases, all words were chosen randomly from the <code>1000</code> most common US English words, and <code>target</code> was chosen as a concatenation of two random words.</p>
 | 
						|
 | 
						|
<p> </p>
 | 
						|
<p><strong>Example 1:</strong></p>
 | 
						|
 | 
						|
<pre>
 | 
						|
<strong>Input:</strong> stickers = ["with","example","science"], target = "thehat"
 | 
						|
<strong>Output:</strong> 3
 | 
						|
<strong>Explanation:</strong>
 | 
						|
We can use 2 "with" stickers, and 1 "example" sticker.
 | 
						|
After cutting and rearrange the letters of those stickers, we can form the target "thehat".
 | 
						|
Also, this is the minimum number of stickers necessary to form the target string.
 | 
						|
</pre>
 | 
						|
 | 
						|
<p><strong>Example 2:</strong></p>
 | 
						|
 | 
						|
<pre>
 | 
						|
<strong>Input:</strong> stickers = ["notice","possible"], target = "basicbasic"
 | 
						|
<strong>Output:</strong> -1
 | 
						|
Explanation:
 | 
						|
We cannot form the target "basicbasic" from cutting letters from the given stickers.
 | 
						|
</pre>
 | 
						|
 | 
						|
<p> </p>
 | 
						|
<p><strong>Constraints:</strong></p>
 | 
						|
 | 
						|
<ul>
 | 
						|
	<li><code>n == stickers.length</code></li>
 | 
						|
	<li><code>1 <= n <= 50</code></li>
 | 
						|
	<li><code>1 <= stickers[i].length <= 10</code></li>
 | 
						|
	<li><code>1 <= target.length <= 15</code></li>
 | 
						|
	<li><code>stickers[i]</code> and <code>target</code> consist of lowercase English letters.</li>
 | 
						|
</ul>
 |