2806.Set of Strings

Time Limit: 1s Memory Limit: 256MB

You are given a string q. A sequence of k strings s1,s2,...,sk is called beautiful, if the concatenation of these strings is string q (formally, s1+s2+...+sk=q) and the first characters of these strings are distinct.

Find any beautiful sequence of strings or determine that the beautiful sequence doesn't exist.

Input Format(From the terminal/stdin)

The first line contains a positive integer k (1 \le k \le 26) - the number of strings that should be in a beautiful sequence.

The second line contains string q, consisting of lowercase Latin letters. The length of the string is within range from 1 to 100, inclusive.

Output Format(To the terminal/stdout)

If such sequence doesn't exist, then print in a single line "NO" (without the quotes). Otherwise, print in the first line "YES" (without the quotes) and in the next k lines print the beautiful sequence of strings s1,s2,...,sk.

If there are multiple possible answers, print any of them.

Sample Input 1

Copy
1
abca
 \n
    \n

Sample Output 1

Copy
YES
abca
   \n
    \n

Sample Input 2

Copy
2
aaacas
 \n
      \n

Sample Output 2

Copy
YES
aaa
cas
   \n
   \n
   \n

Sample Input 3

Copy
4
abc
 \n
   \n

Sample Output 3

Copy
NO
  \n

Hints

In the second sample there are two possible answers: {"aaaca","s"} and {"aaa","cas"}.

Submit

请先 登录

© 2025 FAQs