概述
You are given n
strings. Each string consists of lowercase English letters. Rearrange (reorder) the given strings in such a way that for every string, all strings that are placed before it are its substrings.
String a
is a substring of string b if it is possible to choose several consecutive letters in b in such a way that they form a. For example, string "for" is contained as a substring in strings "codeforces", "for" and "therefore", but is not contained as a substring in strings "four", "fofo" and "rof".
The first line contains an integer n
) — the number of strings.
The next n
lines contain the given strings. The number of letters in each string is from 1 to 100, inclusive. Each string consists of lowercase English letters.
Some strings might be equal.
If it is impossible to reorder n
given strings in required order, print "NO" (without quotes).
Otherwise print "YES" (without quotes) and n
given strings in required order.
5 a aba abacaba ba aba
YES a ba aba aba abacaba
5 a abacaba ba aba abab
NO
3 qwerty qwerty qwerty
YES qwerty qwerty qwerty
#include<bits/stdc++.h>
using namespace std;
int n;
string a[101];
bool cmp(string a,string b)
{
return a.length()<b.length();
}
int main()
{
int i;
for(cin>>n,i=0; i<n; cin>>a[i],++i);
sort(a,a+n,cmp);
for(int i=0; i<n-1; ++i)
{
if(a[i+1].find(a[i])==string::npos)
{
return cout<<"NO",0;
}
}
cout<<"YES"<<endl;
for(int i=0; i<n; ++i)
{
cout<<a[i]<<endl;
}
return 0;
}
最后
以上就是知性雨为你收集整理的codeforce 486 div3 B 字符串中查询字串并进行排序的全部内容,希望文章能够帮你解决codeforce 486 div3 B 字符串中查询字串并进行排序所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复