CF1182C.Beautiful Lyrics

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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"

is a beautiful lyric because there are two vowels each in "hello" and "whatsup", four vowels each in "hellooowww" and "yowowowow" (keep in mind that "y" is not a vowel), and the last vowel of each line is "o".For example of a not beautiful lyric,

"hey man""iam mcdic"

is not a beautiful lyric because "hey" and "iam" don't have same number of vowels and the last vowels of two lines are different ("a" in the first and "i" in the second).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.

输入格式

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.

输出格式

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.

输入输出样例

  • 输入#1

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

    输出#1

    3
    about proud
    hooray round
    wow first
    this is
    i that
    mcdics am
    
  • 输入#2

    7
    arsijo
    suggested
    the
    idea
    for
    this
    problem
    

    输出#2

    0
    
  • 输入#3

    4
    same
    same
    same
    differ
    

    输出#3

    1
    same differ
    same same
    

说明/提示

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.

首页