CF1070J.Streets and Avenues in Berhattan
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Berhattan is the capital of Berland. There are n streets running parallel in the east-west direction (horizontally), and there are m avenues running parallel in the south-north direction (vertically). Each street intersects with each avenue, forming a crossroad. So in total there are n⋅m crossroads in Berhattan.
Recently, the government has changed in Berland. The new government wants to name all avenues and all streets after heroes of revolution.
The special committee prepared the list of k names. Only these names can be used as new names for streets and avenues. Each name can be used at most once.
The members of committee want to name streets and avenues in the way that minimizes inconvenience for residents. They believe that if street and avenue names start with the same letter, then their crossroad will be inconvenient. Hence only the first letter of each name matters.
Given first letters of k names, find C — minimal possible number of inconvenient crossroads in Berhattan after the naming process.
输入格式
Input contains one or several test cases to process. The first line contains t ( 1≤t≤30000 ) — the number of test cases. Solve test cases separately, test cases are completely independent and do not affect each other.
The description of t test cases follows. Each test case starts with line with space-separated numbers n,m,k ( 1≤n,m≤30000 ; n+m≤k≤2⋅105 ) — the number of streets, number of avenues and the number of names in the committee's list, respectively.
The the second line of each test case contains a string of k uppercase English letters. i -th letter of the string is the first letter of i -th name from the committee's list.
It's guaranteed that the sum of numbers n from all test cases is not greater than 30000 . Similarly, the sum of numbers m from all test cases is not greater than 30000 . The sum of numbers k from all test cases is not greater than 2⋅105 .
输出格式
For each test case print single number C in the separate line — minimal possible number of inconvenient crossroads in Berhattan after the naming process.
输入输出样例
输入#1
2 2 3 9 EEZZEEZZZ 2 7 9 EEZZEEZZZ
输出#1
0 4
输入#2
2 4 4 8 CZBBCZBC 1 1 4 TTCT
输出#2
1 0