Problem Description
Carryon最近喜欢上了一些奇奇怪怪的字符,字符都是英文小写字母,但奇怪的是a可能比b小,也可能比b大,好奇怪。与此同时,他拿到了好多的字符串,可是看着很不顺眼,因为他们很乱,所以他想将这些字符串按字典序从小到大排下序,这样就好看多了。由于a可能比b小,也可能比b大,这样按常规方法肯定是不行的,幸运的是他破解了26个字母的大小顺序,这样他就开开心心的将字符串从小到大排序了。
Input
第一行输入26个字符的大小顺序
第二行输入一个n(1≤n≤105)。
接下来n行,每行一个字符串si,数据保证每个字符串不重复。(1≤∑i = 1nlen(si)≤3×105)
Output
将n个字符串按字典序从小到大输出。
Sample Input
abcdefghijklmnopqrstuvwxyz
5
bcda
licj
lin
aaaa
aaaaa
Sample Output
aaaa
aaaaa
bcda
licj
lin
1 #include<iostream> 2 #include<string.h> 3 #include<algorithm> 4 #include<map> 5 #define maxn 1111111 6 using namespace std; 7 int pos = 1; 8 char s[26], str[maxn]; 9 int t[maxn][26]; 10 bool vis[maxn]; 11 map<char, int>mm; 12 void insert(char *s) 13 { 14 int rt = 0, len = strlen(s); 15 for (int i = 0; i<len; i++) 16 { 17 int x = mm[s[i]]; 18 if (!t[rt][x])//如果没有从rt到x的字符串前缀,插入一个 19 t[rt][x] = pos++;//按查询字符串的每个字符输入顺序进行标记 20 rt = t[rt][x];//为下一次标记准备,将当前节点作为下一次标记的上一个节点 21 } 22 vis[rt] = 1;//在每次输入的一个字符串的最后一个字符标记 23 } 24 void dfs(int rt, int deep) 25 { 26 for (int i = 0; i<26; i++)//从第一个字符开始找(第一个字符就是最小的) 27 { 28 if (t[rt][i])//如果有从rt到i的字符串前缀 29 { 30 str[deep] = s[i];//str[]记录s[i]字符串 31 if (vis[t[rt][i]])//搜到s[]串的最后一个字符就输出这个字符串 32 { 33 str[deep + 1] = '