CF544A.Set of Strings

传统题 时间 2000 ms 内存 256 MiB 5 尝试 1 已通过 1 标签

Set of Strings

You are given a string q. A sequence of k strings s1, s2, ..., s**k is called beautiful, if the concatenation of these strings is string q (formally, s1 + s2 + ... + s**k = 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

The first line contains a positive integer k (1 ≤ k ≤ 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

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, ..., s**k.

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

Note

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

Samples

1
abca
YES
abca
2
aaacas
YES
aaa
cas
4
abc
NO

在线编程 IDE

建议全屏模式获得最佳体验