Codeforces Round #401 (Div. 2) D. Cloud of Hashtags

来源:互联网 发布:win10系统自带优化 编辑:程序博客网 时间:2024/06/05 08:01
D. Cloud of Hashtags
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Vasya is an administrator of a public page of organization "Mouse and keyboard" and his everyday duty is to publish news from the world of competitive programming. For each news he also creates a list of hashtags to make searching for a particular topic more comfortable. For the purpose of this problem we define hashtag as a string consisting of lowercase English letters and exactly one symbol '#' located at the beginning of the string. The length of the hashtag is defined as the number of symbols in it without the symbol '#'.

The head administrator of the page told Vasya that hashtags should go in lexicographical order (take a look at the notes section for the definition).

Vasya is lazy so he doesn't want to actually change the order of hashtags in already published news. Instead, he decided to delete some suffixes (consecutive characters at the end of the string) of some of the hashtags. He is allowed to delete any number of characters, even the whole string except for the symbol '#'. Vasya wants to pick such a way to delete suffixes that the total number of deleted symbols isminimum possible. If there are several optimal solutions, he is fine with any of them.

Input

The first line of the input contains a single integer n (1 ≤ n ≤ 500 000) — the number of hashtags being edited now.

Each of the next n lines contains exactly one hashtag of positive length.

It is guaranteed that the total length of all hashtags (i.e. the total length of the string except for characters '#') won't exceed 500 000.

Output

Print the resulting hashtags in any of the optimal solutions.

Examples
input
3#book#bigtown#big
output
#b#big#big
input
3#book#cool#cold
output
#book#co#cold
input
4#car#cart#art#at
output
###art#at
input
3#apple#apple#fruit
output
#apple#apple#fruit
Note

Word a1, a2, ..., am of length m is lexicographically not greater than word b1, b2, ..., bk of length k, if one of two conditions hold:

  • at first position i, such that ai ≠ bi, the character ai goes earlier in the alphabet than character bi, i.e. a has smaller character than bin the first position where they differ;
  • if there is no such position i and m ≤ k, i.e. the first word is a prefix of the second or two words are equal.

The sequence of words is said to be sorted in lexicographical order if each word (except the last one) is lexicographically not greater than the next word.

For the words consisting of lowercase English letters the lexicographical order coincides with the alphabet word order in the dictionary.

According to the above definition, if a hashtag consisting of one character '#' it is lexicographically not greater than any other valid hashtag. That's why in the third sample we can't keep first two hashtags unchanged and shorten the other two.

题目大意:有N个字符串,现在每个字符串希望能够尽量减少少量后缀使得n个字符串按照升序排列

解题思路:一个开始觉得5e5*5e5完全不敢写,这玩意直接GG,然后查了一下,发现这道题完全不用担心,你要做的只是从后面开始倒着减少即可,这样做的,就会导致前面的字符串总会在某个位置的时候减少特别少,使得时间上完全不会是5e5*5e5这么大

#include <cstdio>#include <cstring>#include <iostream>#include <algorithm>#include <vector>#include <queue>#include <set>#include <map>#include <string>#include <cmath>#include <cstdlib>#include <ctime>using namespace std;typedef long long LL;//strattime:2017/10/9 22:16//endtime:2017/10/9 22:38int i,n,k,j;string str[500005];int main(){cin>>n;for(i=1;i<=n;i++){cin>>str[i];}for(i=n-1;i>=1;i--){if(str[i]>str[i+1]){k=0;while(k<min(str[i].length(),str[i+1].length())&&str[i][k]<=str[i+1][k])k++;while(k<str[i].length()){str[i][k]='\n';k++;}}}for(i=1;i<=n;i++){for(j=0;j<str[i].length()&&str[i][j]!='\n';j++)cout<<str[i][j];cout<<endl;} return 0;}


阅读全文
0 0
原创粉丝点击