#Lutece0711. Angry Grammar Nazi
Angry Grammar Nazi
Migrated from Lutece 711 Angry Grammar Nazi
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
Your friend is what we can call a grammar nazi. He spends a lot of time on popular internet discussion forums. Unfortunately, he has a bad temper and loses his mind whenever someone incorrigibly befouls the English language, with unrelenting violations of grammatical and ortographic rules.
In order to avoid smashed keyboards,monitors and coffee-cup holders, you advice your friend to momentarily stop reading and count to ten each time he becomes angry, instead of smashing something.
Your friend becomes angry whenever he reads the following words or sequences of words:
- "u", "ur" instead or "you", "your".
- "would of", "should of" instead of "would have", "should have".
- "lol" instead of "haha". In fact he becomes angry even when a word contains "lol"as a substring. (Even if a word contains multiple occurrences of "lol", such as the word "lolol", he will only become angry once.)
You decide to write a computer program that reads sentences one by one, and for each sentence calculates how many times your friend will have uttered a number after reading said sentence. Your friend does not read out loud, so numbers that are part of the input-sentences should not be counted.
Input
The first line of the input consists of a single integer , the number of test cases. The following lines each contain one sentence; that is, one or more words separated by space.
A sentence consists of at most characters, including spaces.
A word consists only of lower case letters between a
and z
, inclusively.
Two adjacent words are separated by exactly one space, and a sentence never has leading or trailing spaces.
Output
For each test case, output how many times your friend have said a number after reading the sentence.
Samples
4
u haz lolcats
my car is green
i have a lollipop
u should of lold
20
0
10
30
Resources
IDI Open 2013 Programming Contest