4 人解决,6 人已尝试。
9 份提交通过,共有 33 份提交。
7.8 EMB 奖励。
单点时限: 1.0 sec
内存限制: 256 MB
Mr. Panda loves fantastic beasts, he is going to use a magic spell to figure out where to find them. Given $N$ strings $S_1, S_2, \ldots, S_N$ where $S_i$ only contains lowercase alphabet letters, the magic spell is the shortest string which is only contained in the first string as a substring. If there is at least one solution, output the lexicographically smallest one.
If there is no solution, output Impossible
instead.
First line contains an integer $N$ $(1 \le N \le 50~000)$ which is the number of strings.
Following is $N$ lines, each line has a non-empty string $S_i$ which only contains lowercase alphabet letters.
The dataset guarantees $N \le |S_1| + |S_2| + \ldots + |S_N| \le 250~000$.
Output the answer string or Impossible
.
2 aba bab
aba
3 qnu cvbb bnu
q
3 a aa aaa
Impossible
4 人解决,6 人已尝试。
9 份提交通过,共有 33 份提交。
7.8 EMB 奖励。