Codeforces Round #486 (Div. 3)-B. Substrings Sort

B. Substrings Sort
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

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".

Input

The first line contains an integer nn (1n1001≤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.

Output

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.

Examples
input
Copy
5
a
aba
abacaba
ba
aba
output
Copy
YES
a
ba
aba
aba
abacaba
input
Copy
5
a
abacaba
ba
aba
abab
output
Copy
NO
input
Copy
3
qwerty
qwerty
qwerty
output
Copy
YES
qwerty
qwerty
qwerty
Note

In the second example you cannot reorder the strings because the string "abab" is not a substring of the string "abacaba".

被HACK掉了。。。只能说数据太水了。。。发现自己的程序问题还这么大,还是太菜了。

本题题意就是是否可以把所给的N个序列摆放成上面的序列是下面序列的子序列

开始想了半天。。。怎么找啊。。。这™序列这么多,要我一个一个比?后来发现,你只需要按照从小到大的序列长度排序就好了啊。。。然后从下往上,两个判断是否上面的那么个序列是下面序列的子序列。o(n)操作嘛,小case.

被HACK掉原因就是我匹配那里写错了

正确写匹配姿势:

 1  for (int i=0; i<=word[p].len-word[p-1].len; i++)//每个头位置的指针
 2     {
 3         flag=0;
 4         pi=i;//检查在I为头的情况下的是否匹配的指针
 5         for(int j=0; j<word[p-1].len;j++)
 6         {
 7             if(word[p].sub[pi]!=word[p-1].sub[j])
 8             {
 9                 flag=1;//如果有不同
10                 break;
11             }
12             else
13             {
14                 pi++;//继续匹配
15                 continue;
16             }
17         }
18         if (flag==0)break;
19     }

emmmmm最后AC代码

#include<iostream>
#include<stdio.h>
#include<string.h>
#include<algorithm>
using namespace std;
struct Node
{
    char sub[105];
    int len;
} word[105];
bool cmp(Node x,Node y)
{
    return x.len<y.len;//按照长度排序
}
int pp(int p)
{
    int flag;
    int pi;
    for (int i=0; i<=word[p].len-word[p-1].len; i++)
    {
        flag=0;
        pi=i;
        for(int j=0; j<word[p-1].len;j++)
        {
            if(word[p].sub[pi]!=word[p-1].sub[j])
            {
                flag=1;
                break;
            }
            else
            {
                pi++;
                continue;
            }
        }
        if (flag==0)break;
    }
    if (flag==0)return 0;
    else return 1;
}
int main()
{
    int n;
    int lens;
    int flag;
    while (~scanf("%d",&n))
    {
        flag=0;
        for (int i=0; i<n; i++)
        {
            scanf("%s",word[i].sub);
            lens=strlen(word[i].sub);
            word[i].len=lens;
        }
        sort(word,word+n,cmp);
        for (int i=n-1; i>0; i--)
        {
            if(pp(i)!=0){
            flag=1;
            break;
            }
        }
        if(flag==1)printf("NO\n");
        else
        {
            printf("YES\n");
            for (int i=0; i<n; i++)
            {
                printf("%s\n",word[i].sub);
            }
        }
    }
    return 0;
}

 

全部评论

相关推荐

不愿透露姓名的神秘牛友
06-29 17:30
找实习找着找着就要进入7月了,马上秋招也要开始了,找实习还有意义吗?
绝迹的星:有面就面, 没面上就当日薪4位数大佬免费培训, 面上了再考虑要不要实习
点赞 评论 收藏
分享
人力小鱼姐:实习经历没有什么含金量,咖啡店员迎宾这种就别写了,其他两段包装一下 想找人力相关的话,总结一下个人优势,结合校园经历里有相关性的部分,加一段自我评价
点赞 评论 收藏
分享
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务