CF BUDDY
← Problems·

1182C · Beautiful Lyrics

1700 · data structures, greedy, strings

Problem: You are given nn words, each of which consists of lowercase alphabet letters. Each word contains at least one vowel. You are going to choose some of the given words and make as many beautiful lyrics as possible.

Each lyric consists of two lines. Each line consists of two words separated by whitespace.

A lyric is beautiful if and only if it satisfies all conditions below.

  • The number of vowels in the first word of the first line is the same as the number of vowels in the first word of the second line.
  • The number of vowels in the second word of the first line is the same as the number of vowels in the second word of the second line.
  • The last vowel of the first line is the same as the last vowel of the second line. Note that there may be consonants after the vowel.

Also, letters "a", "e", "o", "i", and "u" are vowels. Note that "y" is never vowel.

For example of a beautiful lyric,

"hello hellooowww" "whatsup yowowowow"

For example of a not beautiful lyric,

"hey man""iam mcdic"

How many beautiful lyrics can you write from given words? Note that you cannot use a word more times than it is given to you. For example, if a word is given three times, you can use it at most three times.

Input Format: The first line contains single integer nn (1n1051 \le n \le 10^{5}) — the number of words.

The ii-th of the next nn lines contains string sis_{i} consisting lowercase alphabet letters — the ii-th word. It is guaranteed that the sum of the total word length is equal or less than 10610^{6}. Each word contains at least one vowel.

Output Format: In the first line, print mm — the number of maximum possible beautiful lyrics.

In next 2m2m lines, print mm beautiful lyrics (two lines per lyric).

If there are multiple answers, print any.

Note: In the first example, those beautiful lyrics are one of the possible answers. Let's look at the first lyric on the sample output of the first example. "about proud hooray round" forms a beautiful lyric because "about" and "hooray" have same number of vowels, "proud" and "round" have same number of vowels, and both lines have same last vowel. On the other hand, you cannot form any beautiful lyric with the word "codeforces".

In the second example, you cannot form any beautiful lyric from given words.

In the third example, you can use the word "same" up to three times.

Sample Cases

Case 1

Input

14
wow
this
is
the
first
mcdics
codeforces
round
hooray
i
am
proud
about
that

Output

3
about proud
hooray round
wow first
this is
i that
mcdics am

Case 2

Input

7
arsijo
suggested
the
idea
for
this
problem

Output

0

Case 3

Input

4
same
same
same
differ

Output

1
same differ
same same

Similar problems

00:00:00
Loading editor…
Welcome! I'm your coding tutor for this problem. Use the chips below to reveal stored hints or get AI feedback on your code. I'll guide you step by step — never giving away the solution.

Sign in to unlock AI tutor feedback