Unable to understand the problem,Can anyone explain this please?
# | User | Rating |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3823 |
3 | Benq | 3738 |
4 | Radewoosh | 3633 |
5 | jqdai0815 | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | ksun48 | 3390 |
10 | gamegame | 3386 |
# | User | Contrib. |
---|---|---|
1 | cry | 165 |
2 | maomao90 | 164 |
3 | Um_nik | 163 |
4 | atcoder_official | 160 |
4 | adamant | 160 |
6 | -is-this-fft- | 158 |
7 | awoo | 157 |
8 | TheScrasse | 154 |
8 | Dominater069 | 154 |
8 | nor | 154 |
Unable to understand the problem,Can anyone explain this please?
Name |
---|
Find a mapping Mchar> so that
if we change all the letters in the strings equals to M[c] into c,
the strings will be in lexicographical order.
For instance,let's look at the first sample test
M is like this:
abcdefghijklmnopqrstuvwxyz
bcdefghijklmnopqrsatuvwxyz
so "rivest" will become "qhvfrt","shamir" will become "rgslhq",etc.
and you'll find all the words in lexicographical order
your task is to find any of these mappings
In the Question you are provided with a list of strings that are said to be in lexicographical order. Now you need to find any order (permutation) of the 26 letters of the English alphabet which satisfies the fact that the given list is in lexicographical order.