eolymp
bolt
Try our new interface for solving problems
Məsələlər

Funny Language

Funny Language

Zaman məhdudiyyəti 1 saniyə
Yaddaşı istafadə məhdudiyyəti 64 MiB

There is a well know game with words. Given a word you have to write as many other words as possible using the letters from the given word. If the letter repeats multiple times in the original word, you can use it up to as many times in the new words. The order of letters in the original word does not matter. For example, given the word CONTEST you can write NOTE, NET, ON, TEST, SET, etc.

Now you are in charge of writing a new dictionary. Your task is to sneak n new words into it. You know in advance m words Wi (1 <= i <= m) that you will have to play a game with and you need to figure out which new n words to add to the dictionary to maximize the total number of words you can write out of these m words.

More formally, find such a set of nonempty words S where |S| = n, W_i S for any i, and ∑_1_{≤}_i_{≤}_m |S_i| is maximal, where Si S is the set of words that can be written using letters from Wi.

Giriş verilənləri

The first line of the input file contains two integer numbers n (1 <= n <=100) – the number of new words you can add to the dictionary and m (1 <= m <=1 000) – the number of words you will play the game with. The following m lines contain original words. Each word consists of at most 100 uppercase letters from A to Z.

Çıxış verilənləri

Write to the output file n lines with a new word on a line.

Nümunə

Giriş verilənləri #1
3 5
A
ACM
ICPC
CONTEST
NEERC
Çıxış verilənləri #1
C
CN
E
Müəllif Roman Elizarov