-
-
Notifications
You must be signed in to change notification settings - Fork 8.9k
/
Copy pathSolution2.cpp
44 lines (42 loc) · 1.12 KB
/
Solution2.cpp
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
41
42
43
44
class Node {
public:
Node* children[26];
bool isEnd = false;
Node() {
fill(children, children + 26, nullptr);
}
};
class Solution {
public:
int minExtraChar(string s, vector<string>& dictionary) {
Node* root = new Node();
for (const string& w : dictionary) {
Node* node = root;
for (int k = w.length() - 1; k >= 0; --k) {
int i = w[k] - 'a';
if (node->children[i] == nullptr) {
node->children[i] = new Node();
}
node = node->children[i];
}
node->isEnd = true;
}
int n = s.size();
int f[n + 1];
f[0] = 0;
for (int i = 1; i <= n; ++i) {
f[i] = f[i - 1] + 1;
Node* node = root;
for (int j = i - 1; ~j; --j) {
node = node->children[s[j] - 'a'];
if (node == nullptr) {
break;
}
if (node->isEnd && f[j] < f[i]) {
f[i] = f[j];
}
}
}
return f[n];
}
};