zoukankan      html  css  js  c++  java
  • Codeforces Round #445 D. Restoration of string【字符串】

    D. Restoration of string
    time limit per test
    2 seconds
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    A substring of some string is called the most frequent, if the number of its occurrences is not less than number of occurrences of any other substring.

    You are given a set of strings. A string (not necessarily from this set) is called good if all elements of the set are the most frequent substrings of this string. Restore the non-empty good string with minimum length. If several such strings exist, restore lexicographically minimum string. If there are no good strings, print "NO" (without quotes).

    A substring of a string is a contiguous subsequence of letters in the string. For example, "ab", "c", "abc" are substrings of string "abc", while "ac" is not a substring of that string.

    The number of occurrences of a substring in a string is the number of starting positions in the string where the substring occurs. These occurrences could overlap.

    String a is lexicographically smaller than string b, if a is a prefix of b, or a has a smaller letter at the first position where a and b differ.

    Input

    The first line contains integer n (1 ≤ n ≤ 105) — the number of strings in the set.

    Each of the next n lines contains a non-empty string consisting of lowercase English letters. It is guaranteed that the strings are distinct.

    The total length of the strings doesn't exceed 105.

    Output

    Print the non-empty good string with minimum length. If several good strings exist, print lexicographically minimum among them. Print "NO" (without quotes) if there are no good strings.

    Examples
    input
    4
    mail
    ai
    lru
    cf
    output
    cfmailru
    input
    3
    kek
    preceq
    cheburek
    output
    NO
    Note

    One can show that in the first sample only two good strings with minimum length exist: "cfmailru" and "mailrucf". The first string is lexicographically minimum.

    【题意】:给出很多字符串,要求构造一个字符串,使得所有给出的字符串在这个串当中都是出现次数最多子串。输出长度最短的答案。如果有多个答案,输出字典序最小的。

  • 相关阅读:
    面试题--十进制转换成2进制
    c++基础--如何将函数作为参数传递
    面试题--完全二叉树的的最后一层的最右节点
    数据库原理--故障恢复
    数据库原理--事务并发控制
    数据库原理--事务(一)
    数据库原理--1nf 2nf 3nf
    数据库原理--外键和主键
    数据库原理--函数依赖和范式
    人人都有极客精神
  • 原文地址:https://www.cnblogs.com/Roni-i/p/7831266.html
Copyright © 2011-2022 走看看