Canadian Computing Competition: 2015 Stage 1, Junior #3
In Sweden, there is a simple child's game similar to Pig Latin called Rövarspråket (Robbers Language).
In the CCC version of Rövarspråket, every consonant is replaced by three letters, in the following order:
- the consonant itself;
- the vowel closest to the consonant in the alphabet (e.g., if the consonant is
d
, then the closest vowel ise
), with the rule that if the consonant falls exactly between two vowels, then the vowel closer to the start of the alphabet will be chosen (e.g., if the consonant isc
, then the closest vowel isa
); - the next consonant in the alphabet following the original consonant (e.g., if the consonant is
d
, then the next consonant isf
) except if the original consonant isz
, in which case the next consonant isz
as well.
Vowels in the word remain the same. (Vowels are a
, e
, i
, o
, u
and all other letters are consonants.) Write a program that translates a word from English into Rövarspråket.
Input Specification
The input consists of one word entirely composed of lowercase letters. There will be at least one letter and no more than 30 letters in this word.
Output Specification
Output the word as it would be translated into Rövarspråket on one line.
Sample Input 1
joy
Output for Sample Input 1
jikoyuz
Sample Input 2
ham
Output for Sample Input 2
hijamon
Comments
This one made my brain explode. But that wasfun
I like this one.
i like how there's clarity that y isn't a vowel cuz some people including me consider y to be a vowel
y can be a vowel sometimes, but thats too much of a hassle in code. like the rule to if or if not it's a vowel is really weird...
A pangram has been added to the test data, and all submissions were rejudged.
does anyone know what test case 5 is?
If you input
zzz
your program breaks, try thatI think it should be mentioned that the nearest vowel does not wrap around the alphabet. 'y' is 2 positions away from 'a' and 4 away from 'u' but it considers 'u' to be closer since it does not have to wrap around to the beginning.
yeah that part confused me.