forked from doocs/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution2.java
37 lines (36 loc) · 1.04 KB
/
Solution2.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
class Node {
Node[] children = new Node[26];
boolean isEnd;
}
class Solution {
public int minExtraChar(String s, String[] dictionary) {
Node root = new Node();
for (String w : dictionary) {
Node node = root;
for (int k = w.length() - 1; k >= 0; --k) {
int i = w.charAt(k) - 'a';
if (node.children[i] == null) {
node.children[i] = new Node();
}
node = node.children[i];
}
node.isEnd = true;
}
int n = s.length();
int[] f = new int[n + 1];
for (int i = 1; i <= n; ++i) {
f[i] = f[i - 1] + 1;
Node node = root;
for (int j = i - 1; j >= 0; --j) {
node = node.children[s.charAt(j) - 'a'];
if (node == null) {
break;
}
if (node.isEnd && f[j] < f[i]) {
f[i] = f[j];
}
}
}
return f[n];
}
}