Beside other services, ACM helps companies to clearly state their “corporate identity”, which includes company logo but also other signs, like trademarks. One of such companies is Internet Building Masters (IBM), which has recently asked ACM for a help with their new identity. IBM do not want to change their existing logos and trademarks completely, because their customers are used to the old ones. Therefore, ACM will only change existing trademarks instead of creating new ones. After several other proposals, it was decided to take all existing trademarks and find the longest common sequence of letters that is contained in all of them. This sequence will be graphically emphasized to form a new logo. Then, the old trademarks may still be used while showing the new identity. Your task is to find such a sequence.
Input
The input contains several tasks. Each task begins with a line containing a positive integer N, the number of trademarks (2 ≤ N ≤ 4000). The number is followed by N lines, each containing one trademark. Trademarks will be composed only from lowercase letters, the length of each trademark will be at least 1 and at most 200 characters. After the last trademark, the next task begins. The last task is followed by a line containing zero.
Output
For each task, output a single line containing the longest string contained as a substring in all trademarks. If there are several strings of the same length, print the one that is lexicographically smallest. If there is no such non-empty string, output the words “IDENTITY LOST” instead.
Sample Input 3 aabbaabb abbababb bbbbbabb 2 xyz abc 0 Sample Output abb IDENTITY LOST
给你n个字符串,求这n个字符串字典序最小的最长公共子串。
这道题我们可以用哈希算法来解决。 首先因为枚举的最长公共子串的长度具有单调性,因此我们可以通过二分的方式来找出答案串的长度。然后寻找是否有该长度的公共子串。 寻找方法为:枚举出所有s1中该长度的子串,然后与剩下的n-1个字符串中所有该长度的子串进行比较。如果s1中有某个子串能与剩下的n-1个字符串中的某个子串匹配成功,那么说明该长度是可以的。 然后记录下该串,与答案串进行比较:如果两串长度不等,保留长度更长的进入答案串。如果长度相等,保留字典序更小的进入答案串。