You are given nn 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 aa is a substring of string bb if it is possible to choose several consecutive letters in bb in such a way that they form aa. 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 nn (1≤n≤1001≤n≤100) — the number of strings.
The next nn lines contain the given strings. The number of letters in each string is from 11 to 100100, inclusive. Each string consists of lowercase English letters.
Some strings might be equal.
If it is impossible to reorder nn given strings in required order, print "NO" (without quotes).
Otherwise print "YES" (without quotes) and nn 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
In the second example you cannot reorder the strings because the string "abab" is not a substring of the string "abacaba".
题意:判断一系列字符串能不能使第i个字符串在第i+1个字符串中找到,能则按顺序输出
题解:按字符串长度排一下序,然后再用find遍历一遍就好了
代码:#include <bits/stdc++.h>
using namespace std;
string s[110];
int nums[110];
string str="";
int n;
int cmp(string a,string b)
{
return a.length()<b.length();
}
int main()
{
cin>>n;
int q=0;
for(int i=0;i<n;i++)
{
cin>>s[i];
}
sort(s,s+n,cmp);
int p=1;
for(int i=1;i<n;i++)
{
if(s[i].find(s[i-1])==-1)
{
p=0;
break;
}
}
if(p)
{
cout<<"YES"<<endl;
for(int i=0;i<n;i++)
{
cout<<s[i]<<endl;
}
}
else
{
cout<<"NO"<<endl;
}
}