-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathAlien Dictionary.cpp
57 lines (54 loc) · 1.64 KB
/
Alien Dictionary.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
56
57
class Solution {
bool dfs(char ch,
unordered_map<char, vector<char>>& graph,
unordered_map<char, int>& colors,
string& order) {
colors[ch] = 1;
for (char neighbor : graph[ch]) {
if (colors[neighbor] == 1) {
return true;
}
if (colors[neighbor] == 0) {
bool has_circle = dfs(neighbor, graph, colors, order);
if (has_circle) {
return true;
}
}
}
order.push_back(ch);
colors[ch] = 2;
return false;
}
public:
string alienOrder(vector<string>& words) {
unordered_map<char, vector<char>> graph;
for (int i = 1; i < words.size(); i++) {
int len = min(words[i-1].size(), words[i].size());
for (int j = 0; j < len; j++) {
if (words[i-1][j] != words[i][j]) {
graph[words[i-1][j]].push_back(words[i][j]);
break;
}
if (j == len - 1 && words[i].size() < words[i-1].size()) {
return "";
}
}
}
unordered_map<char, int> colors;
for (const string& word : words) {
for (char ch : word) {
colors[ch] = 0;
}
}
string res;
for (const auto& [ch, color] : colors) {
if (color == 0) {
if (dfs(ch, graph, colors, res)) {
return "";
}
}
}
reverse(res.begin(), res.end());
return res;
}
};