#ABC137C. Green Bin
Green Bin
题目描述
We will call a string obtained by arranging the characters contained in a string in some order, an anagram of .
For example, greenbin
is an anagram of beginner
. As seen here, when the same character occurs multiple times, that character must be used that number of times.
Given are strings . Each of these strings has a length of and consists of lowercase English characters. Additionally, all of these strings are distinct. Find the number of pairs of integers such that is an anagram of .
我们将把字符串 中包含的字符按一定的顺序排列后得到的字符串称为 的 anagram 。
例如,"greenbin "是 "beginner "的变位。从这里可以看出,当同一字符出现多次时,该字符必须使用相同的次数。
给出了 个字符串 。每个字符串的长度为 ,由小写英文字符组成。此外,所有这些字符串都是不同的。求一对整数 中有多少个这样的字符串。 中的 是 的变位。
输入格式
输入内容按以下格式标准输入:
输出格式
打印一对整数 中 是 的变位数。 ,使得 是 的变形。
样例 #1
样例输入 #1
3
acornistnt
peanutbomb
constraint
样例输出 #1
1
样例 #2
样例输入 #2
2
oneplustwo
ninemodsix
样例输出 #2
0
样例 #3
样例输入 #3
5
abaaaaaaaa
oneplustwo
aaaaaaaaba
twoplusone
aaaabaaaaa
样例输出 #3
4
说明
数据规模与约定
- 是长度为 的字符串。
- 中的每个字符都是小写英文字母。
- 都是不同的字符。
样例 解释
acornistnt "是 "约束 "的变形。没有其他成对的 使得 是 的变位词,所以答案是 。
样例 解释
如果没有一对 使得 是 的变位符,则打印 。
样例 解释
请注意,答案可能不适合 (位)整数类型,尽管我们无法在此说明这种情况。