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;
}

猜你喜欢

转载自blog.csdn.net/SunPeishuai/article/details/81487651
今日推荐