-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathStickersToSpellWord.java
40 lines (37 loc) · 1.27 KB
/
StickersToSpellWord.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package com.dbc;
import java.util.Arrays;
public class StickersToSpellWord {
public int minStickers(String[] stickers, String target) {
int m = target.length();
int[] memo = new int[1 << m];
Arrays.fill(memo, -1);
memo[0] = 0;
int res = dp(stickers, target, memo, (1 << m) - 1);
return res <= m ? res : -1;
}
public int dp(String[] stickers, String target, int[] memo, int mask) {
int m = target.length();
if (memo[mask] < 0) {
int res = m + 1;
for (String sticker : stickers) {
int left = mask;
int[] cnt = new int[26];
for (int i = 0; i < sticker.length(); i++) {
cnt[sticker.charAt(i) - 'a']++;
}
for (int i = 0; i < target.length(); i++) {
char c = target.charAt(i);
if (((mask >> i) & 1) == 1 && cnt[c - 'a'] > 0) {
cnt[c - 'a']--;
left ^= 1 << i;
}
}
if (left < mask) {
res = Math.min(res, dp(stickers, target, memo, left) + 1);
}
}
memo[mask] = res;
}
return memo[mask];
}
}