3376:Finding Palindromes

题目描述

A word is called a palindrome if we read from right to left is as same as we read from left to right. For example, "dad", "eye" and "racecar" are all palindromes, but "odd", "see" and "orange" are not palindromes.

Given n strings, you can generate n × n pairs of them and concatenate the pairs into single words. The task is to count how many of the so generated words are palindromes.

输入解释

The first line of input file contains the number of strings n. The following n lines describe each string:

The i+1-th line contains the length of the i-th string li, then a single space and a string of li small letters of English alphabet.

You can assume that the total length of all strings will not exceed 2,000,000. Two strings in different line may be the same.

输出解释

Print out only one integer, the number of palindromes.

输入样例
3
1 a
2 ab
2 ba
输出样例
5
提示
The 5 palindromes are:
aa aba aba abba baab
来自北京大学POJ的附加信息
Case time limit(单组数据时间限制) 2000MS

该题目是Virtual Judge题目,来自 北京大学POJ

源链接: POJ-3376

最后修改于 2020-10-29 07:00:04 UTC 由爬虫自动更新

共提交 0

通过率 --%
时间上限 内存上限
10000 262144

·

·

·

·

登陆或注册以提交代码