Codefores Round #263 (div2) B. Appleman and Card Game

本文探讨了一个涉及卡片选择的策略游戏,玩家需要从一系列带有字母的卡片中选出特定数量的卡片来获得最多的分数。通过分析卡片上的字母分布并采用适当的算法进行优化选择,文章详细解释了如何实现分数最大化的方法。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

B. Appleman and Card Game
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

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 ith, 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?

Input

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.

Output

Print a single integer – the answer to the problem.

Sample test(s)
input
15 10
DZFDFZDFDDDDDDF
output
82
input
6 4
YJSNPI
output
4
Note

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.

代码:

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
int a[30];
char s[100100];
using namespace std;
bool cmp(int a,int b)
{
    return a>b;
}
int main()
{
    int n,k;
    long long ans;
    while(~scanf("%d%d",&n,&k))
    {
        memset(a,0,sizeof(a));
        scanf("%s",s);
        for(int i=0;i<n;i++)
        {
           a[s[i]-'A']++;
        }
        sort(a,a+30,cmp);
        ans=0;
       int t=0;
        while(1)
        {
            if(k>=a[t])
            {
                ans+=(long long)a[t]*a[t];
                k-=a[t];
                t++;
            }
            else
            {
                ans+=(long long)k*k;
                break;
            }
            if(t>=30)
            break;
        }
        cout<<ans<<endl;
    }
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值