Team Name codechef February 2021 long challenge editorial Full solution with code-
Problem Statement-
Сhef has assembled a football team! Now he needs to choose a name for his team. There are words in English that Chef considers funny. These words are .
Chef thinks that a good team name should consist of two words such that they are not funny, but if we swap the first letters in them, the resulting words are funny. Note that under the given constraints, this means that a word is a non-empty string containing only lowercase English letters.
Can you tell Chef how many good team names there are?
Input
- The first line of the input contains a single integer denoting the number of test cases. The description of test cases follows.
- The first line of each test case contains a single integer .
- The second line contains space-separated strings .
Output
For each test case, print a single line containing one integer — the number of ways to choose a good team name.
Constraints
- for each valid
- contain only lowercase English letters
- are pairwise distinct
- the sum of over all test cases does not exceed
Subtasks
Subtask #1 (20 points): contain only letters 'a' and 'b'
Subtask #2 (80 points): original constraints
Example Input
3
2
suf mas
3
good game guys
4
hell bell best test
Example Output
2
0
2
Explanation
Example case 1: The good team names are ("muf", "sas") and ("sas", "muf").
Example case 2: There are no good team names because all funny words start with 'g'.
Example case 3: The good team names are ("hest", "tell") and ("tell", "hest").
Comments
Post a Comment