-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path1061.cpp
55 lines (55 loc) · 1.38 KB
/
1061.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
45
46
47
48
49
50
51
52
53
54
55
class DisjointSet {
private:
vector<int> parent;
vector<int> rank;
public:
DisjointSet(int size) {
parent.resize(size, 0);
rank.resize(size, 0);
for (int i = 0; i < size; ++i) {
parent[i] = i;
}
}
int find(int x) {
if (parent[x] != x) {
parent[x] = find(parent[x]);
}
return parent[x];
}
void join(int x, int y) {
int pX = find(x);
int pY = find(y);
if (pX == pY) return;
if (rank[pX] > rank[pY]) {
parent[pY] = pX;
}
else if (rank[pX] < rank[pY]) {
parent[pX] = pY;
}
else {
parent[pY] = pX;
rank[pX]++;
}
}
};
class Solution {
public:
string smallestEquivalentString(string s1, string s2, string baseStr) {
DisjointSet* disjointSet = new DisjointSet(26);
int n = s1.size();
for (int i = 0; i < n; ++i) {
disjointSet->join(s1[i] - 'a', s2[i] - 'a');
}
vector<int> groupMin(26, 26);
for (int i = 0; i < 26; ++i) {
int group = disjointSet->find(i);
groupMin[group] = min(groupMin[group], i);
}
string res;
for (auto& c : baseStr) {
int group = disjointSet->find(c - 'a');
res.push_back(groupMin[group] + 'a');
}
return res;
}
};