-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProblem_STOII_0065_minimumLengthEncoding.cc
69 lines (64 loc) · 1.25 KB
/
Problem_STOII_0065_minimumLengthEncoding.cc
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#include <functional>
#include <iostream>
#include <unordered_map>
#include <vector>
using namespace std;
// seem as leetcode 0820
// https://leetcode-cn.com/problems/short-encoding-of-words/
// see at Problem_0820_minimumLengthEncoding.cc
class Solution
{
class Tire
{
public:
class Node
{
public:
int pass;
int end;
unordered_map<int, Node *> nexts;
Node()
{
pass = 0;
end = 0;
}
};
Node *root;
Tire() { root = new Node(); }
};
public:
int minimumLengthEncoding(vector<string> &words)
{
Tire t;
for (auto &word : words)
{
Tire::Node *cur = t.root;
cur->pass++;
for (int i = word.length() - 1; i >= 0; i--)
{
if (!cur->nexts.count(word[i]))
{
cur->nexts[word[i]] = new Tire::Node();
}
cur = cur->nexts[word[i]];
cur->pass++;
}
cur->end++;
}
Tire::Node *cur = t.root;
int ans = 0;
function<void(Tire::Node *, int)> dfs = [&](Tire::Node *cur, int len)
{
if (cur->pass == cur->end)
{
ans += len + 1;
}
for (auto &[c, node] : cur->nexts)
{
dfs(node, len + 1);
}
};
dfs(t.root, 0);
return ans;
}
};