bzoj#P1524. [POI2006]Pal
[POI2006]Pal
Statement
Little Johnny enjoys playing with words. He has chosen palindromes (a palindrome is a wordthat reads the same when the letters composing it are taken in the reverse order, such as dad, eye orracecar for instance) then generated all possible pairs of them and concatenated the pairs intosingle words. Lastly, he counted how many of the so generated words are palindromes themselves.
However, Johnny cannot be certain of not having comitted a mistake, so he has asked you to repeatthe very same actions and to give him the outcome. Write a programme which shall perform thistask for you.
TaskWrite a programme which:
reads the palindromes given by Johnny from the standard input, determines the number of words formed out of pairs of palindromes from the input, which are palindromes themselves, writes the outcome to the standard output.
Input Format
The first line of the standard input contains a single integer , , denoting the number ofpalindromes given by Johnny. The following lines contain a description of the palindromes. The st line contains a single positive integer denoting the length of 'th palindrome and apalindrome of small letters of English alphabet. The number is separated from the palindromeby a single space. The palindromes in distinct lines are distinct. The total length of all palindromesdoes not exceed .
Output Format
The first and only line of the standard output should contain a single integer: the number of distinctordered pairs of palindromes which form a palindrome upon being concatenated.
6
2 aa
3 aba
3 aaa
6 abaaba
5 aaaaa
4 abba
14