953. Verifying an Alien Dictionary

953. Verifying an Alien Dictionary

Description

Difficulty: Easy

Related Topics: Array, Hash Table, String

In an alien language, surprisingly, they also use English lowercase letters, but possibly in a different order. The order of the alphabet is some permutation of lowercase letters.

Given a sequence of words written in the alien language, and the order of the alphabet, return true if and only if the given words are sorted lexicographically in this alien language.

Example 1:

1
2
3
Input: words = ["hello","leetcode"], order = "hlabcdefgijkmnopqrstuvwxyz"
Output: true
Explanation: As 'h' comes before 'l' in this language, then the sequence is sorted.

Example 2:

1
2
3
Input: words = ["word","world","row"], order = "worldabcefghijkmnpqstuvxyz"
Output: false
Explanation: As 'd' comes after 'l' in this language, then words[0] > words[1], hence the sequence is unsorted.

Example 3:

1
2
3
Input: words = ["apple","app"], order = "abcdefghijklmnopqrstuvwxyz"
Output: false
Explanation: The first three characters "app" match, and the second string is shorter (in size.) According to lexicographical rules "apple" > "app", because 'l' > '∅', where '∅' is defined as the blank character which is less than any other character (More info).

Constraints:

  • 1 <= words.length <= 100
  • 1 <= words[i].length <= 20
  • order.length == 26
  • All characters in words[i] and order are English lowercase letters.

Hints/Notes

  • use map to record the order
  • the best time complexity is O(n*m)
  • we don’t need to compare one word with all following words, just with the next word, since the order is transtive

Solution

Language: C++

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
class Solution {
public:
bool isAlienSorted(vector<string>& words, string order) {
unordered_map<int, int> mapping;
for (int i = 0; i < order.size(); i++) {
char c = order[i];
mapping[c - 'a'] = i;
}
for (int i = 0; i < words.size() - 1; i++) {
for (int j = 0; j < words[i].size(); j++) {
if (j >= words[i + 1].size()) {
return false;
}
if (words[i][j] != words[i + 1][j]) {
int w1 = mapping[words[i][j] - 'a'];
int w2 = mapping[words[i + 1][j] - 'a'];
if (w1 > w2) {
return false;
} else {
break;
}
}
}
}
return true;
}
};