777D - Cloud of Hashtags

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 is minimumpossible. 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.

題目大意:每個字符串刪除一個後綴,刪除掉的字母要儘量少,使得全部字符串成爲一個非遞減的字典序;
解題思路:逆着來,字符串刪除後字典序一定是更小了,使用貪心策略,第n個不變,變第n-1個,然後第n-1個不變,變第n-2個,以此類推。

AC代碼:
#include<stdio.h>
#include<iostream>
#include<vector>
#include<string>
#include<stdlib.h>
#include<math.h>
#include<queue>
#include<map>
#include<string.h>
#include<algorithm>
using namespace std;
typedef long long int ll;
typedef unsigned long long int ull;
string s[500010];
int n, ans[500010];
int main() {
	int i, j, k;
	cin >> n;
	for (i = 1; i <= n; i++) {
		cin >> s[i];
	}
	ans[n] = s[n].length();
	for (i = n - 1; i >= 1; i--) {
		int l = s[i].length();
		bool f = false;
		for (j = 1; j < l&&j < ans[i+1]; j++) {
			if (s[i][j] < s[i + 1][j]) {
				ans[i] = l;
				f = true;
				break;
			}
			else if (s[i][j]>s[i+1][j]) {
				ans[i] = j;
				f = true;
				break;
			}
		}
		if (f==false) {
			ans[i] = min(l, ans[i + 1]);
		}
	}
	for (i = 1; i <= n; i++) {
		cout << '#';
		for (j = 1; j < ans[i]; j++) {
			cout << s[i][j];
		}
		cout << endl;
	}
	return 0;
}



發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章