CF462B.Appleman and Card Game
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Appleman has n cards. Each card has an uppercase letter written on it. Toastman must choose k cards from Appleman's cards. Then Appleman should give Toastman some coins depending on the chosen cards. Formally, for each Toastman's card i you should calculate how much Toastman's cards have the letter equal to letter on i th, then sum up all these quantities, such a number of coins Appleman should give to Toastman.
Given the description of Appleman's cards. What is the maximum number of coins Toastman can get?
输入格式
The first line contains two integers n and k ( 1<=k<=n<=105 ). The next line contains n uppercase letters without spaces — the i -th letter describes the i -th card of the Appleman.
输出格式
Print a single integer – the answer to the problem.
输入输出样例
输入#1
15 10 DZFDFZDFDDDDDDF
输出#1
82
输入#2
6 4 YJSNPI
输出#2
4
说明/提示
In the first test example Toastman can choose nine cards with letter D and one additional card with any letter. For each card with D he will get 9 coins and for the additional card he will get 1 coin.