forked from mdabarik/blind-75-leetcode-questions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path32--alien-dictionary.java
154 lines (120 loc) · 3.4 KB
/
32--alien-dictionary.java
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
/*
URL(GFG): https://practice.geeksforgeeks.org/problems/alien-dictionary/1
URL (LintCode): https://www.lintcode.com/problem/892
*/
/* Alien Dictionary Problem Statements:
There is a new alien language which uses the latin alphabet. However, the order among letters are unknown to you.
You receive a list of words from the dictionary, where words are sorted lexicographically by the rules of this new language.
Derive the order of letters in this language.
Return a string of the unique letters in the new alien language sorted in lexicographically increasing order by the new language's rules.
If there is no solution, return "". If there are multiple solutions, return any of them.
A string s is lexicographically smaller than a string t if at the first letter where they differ, the letter in s comes before the letter in t in the alien language.
If the first min(s.length, t.length) letters are the same, then s is smaller if and only if s.length < t.length.
Input:
[
"wrt",
"wrf",
"er",
"ett",
"rftt"
]
Output: "wertf".
Input:
[
"z",
"x"
]
Output: "zx"
Input:
[
"z",
"x",
"z"
]
Output: ""
Explanation: The order is invalid, so return "".
Input:
[
"A",
"B",
"C"
]
Output: "ABC"
Input:
[
"abc"
"ab"
]
Output: ""
Input:
[
"ab"
"abc"
]
Output: "abc"
Input:
[
"apes"
"ape"
]
Output: ""
Input:
[
"ape"
"apes"
]
Output: "aeps"
Input: ["abc","bcd","qwert","ab"]
Output: ""
*/
public class Solution {
public String alienOrder(String[] words) { // kahn's algorithm
if (words == null || words.length == 0) return "";
Map<Character, List<Character>> adjList = new HashMap<>();
int[] indegree = new int[26]; // a->z
for (int i = 1; i < words.length; i++) {
String prev = words[i - 1];
String curr = words[i];
if ((prev.length() == curr.length() + 1) && prev.substring(0, curr.length()).equals(curr)) // ["abc", "ab"] -> s.length() < t.length() // O(m)
return "";
for (int k = 0; k < Math.min(prev.length(), curr.length()); k++) { // O(m)
char c1 = prev.charAt(k);
char c2 = curr.charAt(k);
if (c1 != c2) {
if (!adjList.containsKey(c1)) {
adjList.put(c1, new ArrayList<>());
}
adjList.get(c1).add(c2);
indegree[c2 - 'a']++;
break;
}
}
}
Set<Character> uniqueChar = new HashSet<>();
for (String word : words) {
for (char c : word.toCharArray()) {
uniqueChar.add(c);
}
}
PriorityQueue<Character> minHeap = new PriorityQueue<>(); // ["ba", "bac"]
for (char letter : uniqueChar) {
if (indegree[letter - 'a'] == 0) {
minHeap.add(letter);
}
}
String topSort = "";
while (!minHeap.isEmpty()) {
char currCh = minHeap.poll();
topSort += currCh;
if (adjList.get(currCh) == null) continue;
for (char neighbor : adjList.get(currCh)) {
if (--indegree[neighbor - 'a'] == 0) {
minHeap.add(neighbor);
}
}
}
return topSort.lengFth() == uniqueChar.size() ? topSort : "";
}
}
// TC: O(nm), SC: O(nm)
/* Input:["wrt","wrf","er","ett","rftt"] */