CodeForces - 999C Alphabetic Removals -

output

standard output

You are given a string ss consisting of nn lowercase Latin letters. Polycarp wants to remove exactly kk characters (k≤nk≤n) from the string ss. Polycarp uses the following algorithm kk times:

  • if there is at least one letter 'a', remove the leftmost occurrence and stop the algorithm, otherwise go to next item;
  • if there is at least one letter 'b', remove the leftmost occurrence and stop the algorithm, otherwise go to next item;
  • ...
  • remove the leftmost occurrence of the letter 'z' and stop the algorithm.

This algorithm removes a single letter from the string. Polycarp performs this algorithm exactly kk times, thus removing exactly kk characters.

Help Polycarp find the resulting string.

Input

The first line of input contains two integers nn and kk (1≤k≤n≤4⋅1051≤k≤n≤4⋅105) — the length of the string and the number of letters Polycarp will remove.

The second line contains the string ss consisting of nn lowercase Latin letters.

Output

Print the string that will be obtained from ss after Polycarp removes exactly kk letters using the above algorithm kk times.

If the resulting string is empty, print nothing. It is allowed to print nothing or an empty line (line break).

Examples

Input

Copy

15 3
cccaabababaccbc

Output

Copy

cccbbabaccbc

Input

Copy

15 9
cccaabababaccbc

Output

Copy

cccccc

Input

Copy

1 1
u

 

Output

时间问题只有代码:

#include<bits/stdc++.h>
using namespace std;
bool b[400008];
char a[400008];
int  main()
{
    int n,k,sum=0;

    memset(b,true,sizeof(b));
    scanf("%d%d",&n,&k);
    for(int i=0;i<n;i++)
    {
       cin>>a[i];
    }
    char char1='a';
    for(int j=0;j<26;j++)
    {
      for(int i=0;i<n;i++)
      {
        if(char(char1+j)==a[i])
        {
            sum++;
            b[i]=false;
        }
        if(sum==k)
        break;
      }
      if(sum==k) break;
    }
    for(int i=0;i<n;i++)
    {
        if(b[i])
            cout<<a[i];
    }
    return 0;
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

不会敲代码的小帅

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值