CCC '03 S2 - Poetry

View as PDF

Submit solution

Points: 5
Time limit: 2.0s
Memory limit: 256M

Problem type
Canadian Computing Competition: 2003 Stage 1, Junior #4, Senior #2

A simple poem consists of one or more four-line verses. Each line consists of one or more words consisting of upper or lowercase letters, or a combination of both upper and lowercase letters. Adjacent words on a line are separated by a single space.

We define the last syllable of a word to be the sequence of letters from the last vowel (a, e, i, o, or u, but not y) to the end of the word. If a word has no vowel, then the last syllable is the word itself. We say that two lines rhyme if their last syllables are the same, ignoring case.

You are to classify the form of rhyme in each verse. The form of rhyme can be perfect, even, cross, shell, or free:

  • perfect rhyme: the four lines in the verse all rhyme
  • even rhyme: the first two lines rhyme and the last two lines rhyme
  • cross rhyme: the first and third lines rhyme, as do the second and fourth
  • shell rhyme: the first and fourth lines rhyme, as do the second and third
  • free rhyme: any form that is not perfect, even, cross, or shell.

The first line of the input file contains an integer N, the number of verses in the poem, 1 \le N \le 5. The following 4N lines of the input file contain the lines of the poem. Each line contains at most 80 letters of the alphabet and spaces as described above.

The output should have N lines. For each verse of the poem there should be a single line containing one of the words perfect, even, cross, shell, or free describing the form of rhyme in that verse.

Sample Input 1

1
One plus one is small
one hundred plus one is not
you might be very tall
but summer is not

Output for Sample Input 1

cross

Sample Input 2

2
I say to you boo
You say boohoo
I cry too
It is too much foo
Your teacher has to mark
and mark and mark and teach
To do well on this contest you have to reach
for everything with a lark

Output for Sample Input 2

perfect
shell

Sample Input 3

2
It seems though
that without some dough
creating such a bash
is a weighty in terms of cash
But how I see
the problem so fair
is to write subtle verse
with hardly a rhyme

Output for Sample Input 3

even
free

Comments


  • 0
    HisMonDon  commented on March 14, 2024, 5:05 p.m.

    Can someone help me with my code, im failing test cases number 2 and 4: https://dmoj.ca/src/6271134


  • 0
    mahes0640  commented on Jan. 7, 2022, 4:34 a.m.

    I don't understand what's wrong with my code and why it's failing test case 1 and 3. Here is my code: https://dmoj.ca/src/4185909, could anyone tell me why?


    • 1
      Spitfire720  commented on Jan. 7, 2022, 1:56 p.m.

      If the last word were to end in a vowel, your code doesn't catch that.


      • 0
        mahes0640  commented on Jan. 7, 2022, 2:11 p.m.

        Thanks I got it


  • 0
    Badmode  commented on Jan. 24, 2021, 11:44 p.m.

    Stuck on the last test case but then I realized there are uppercase letters.


    • -2
      Dav_Did  commented on Jan. 25, 2021, 1:29 a.m.

      Yeah if you read other people's comment below you would save a lot of time.


  • 24
    Dav_Did  commented on Jan. 24, 2021, 8:01 p.m. edited

    Roses are red.

    Violet are blue.

    This question is so hard.

    That it turned my brain glue.


    • 24
      Summation  commented on Aug. 9, 2021, 3:33 p.m.

      The output should be "free" for this case.


  • 1
    evanwild  commented on Jan. 18, 2019, 1:40 a.m.

    Test cases #2 and #4 aren't correct for me, any ideas?


    • 4
      NewAccount  commented on Aug. 2, 2019, 1:43 a.m. edit 2

      Make sure that the last syllable is in the last word in each line.

      For Example: the last syllable of the line "Helloh mjk" is "mjk", not "oh".


  • 0
    susheelk  commented on Nov. 26, 2015, 3:11 a.m.

    Any suggestions for the last test case?


    • 5
      wsl1998  commented on Feb. 17, 2016, 4:12 p.m.

      Read the question. "Each line consists of one or more words consisting of upper or lower case letters, or a combination of both upper and lower case letters. "


  • -2
    omaewamoushindeiru  commented on Jan. 6, 2015, 11:30 p.m.

    java .lastIndexOf(), is screwing me over.


    • 4
      FatalEagle  commented on Jan. 7, 2015, 12:00 a.m.

      Using java is screwing me over.

      FTFY


      • -2
        omaewamoushindeiru  commented on Jan. 12, 2015, 4:13 p.m.

        What if, first, second and third rhyme and the fourth one does not. Will this be considered free?


        • 5
          Evan  commented on May 26, 2019, 3:59 p.m.

          yes, it will be considered free