-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProblem_1061_smallestEquivalentString.cc
84 lines (78 loc) · 1.33 KB
/
Problem_1061_smallestEquivalentString.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#include <string>
#include <vector>
using namespace std;
class Solution
{
public:
// 并查集
string smallestEquivalentString(string s1, string s2, string baseStr)
{
int n = s1.length();
UnionFind uf(256);
string ans;
for (int i = 0; i < n; i++)
{
uf.unions(s1[i], s2[i]);
}
for (char c : baseStr)
{
ans.push_back(uf.find(c));
}
return ans;
}
private:
class UnionFind
{
private:
vector<int> father;
vector<int> sizes;
vector<int> help;
int num;
public:
UnionFind(int n)
{
father.resize(n);
sizes.resize(n, 1);
help.resize(n);
num = n;
for (int i = 0; i < n; i++)
{
father[i] = i;
}
}
int find(int i)
{
int hi = 0;
while (i != father[i])
{
help[hi++] = i;
i = father[i];
}
for (hi--; hi >= 0; hi--)
{
father[help[hi]] = i;
}
return i;
}
void unions(int i, int j)
{
int fi = find(i);
int fj = find(j);
if (fi != fj)
{
if (fi < fj)
{
// 谁字典序小,谁当父亲
father[fj] = fi;
sizes[fi] += sizes[fj];
}
else
{
father[fi] = fj;
sizes[fj] += sizes[fi];
}
num--;
}
}
};
};