CF101A.Homework

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Once when Gerald studied in the first year at school, his teacher gave the class the following homework. She offered the students a string consisting of nn small Latin letters; the task was to learn the way the letters that the string contains are written. However, as Gerald is too lazy, he has no desire whatsoever to learn those letters. That's why he decided to lose some part of the string (not necessarily a connected part). The lost part can consist of any number of segments of any length, at any distance from each other. However, Gerald knows that if he loses more than kk characters, it will be very suspicious.

Find the least number of distinct characters that can remain in the string after no more than kk characters are deleted. You also have to find any possible way to delete the characters.

输入格式

The first input data line contains a string whose length is equal to nn ( 1<=n<=1051<=n<=10^{5} ). The string consists of lowercase Latin letters. The second line contains the number kk ( 0<=k<=1050<=k<=10^{5} ).

输出格式

Print on the first line the only number mm — the least possible number of different characters that could remain in the given string after it loses no more than kk characters.

Print on the second line the string that Gerald can get after some characters are lost. The string should have exactly mm distinct characters. The final string should be the subsequence of the initial string. If Gerald can get several different strings with exactly mm distinct characters, print any of them.

输入输出样例

  • 输入#1

    aaaaa
    4
    

    输出#1

    1
    aaaaa
    
  • 输入#2

    abacaba
    4
    

    输出#2

    1
    aaaa
    
  • 输入#3

    abcdefgh
    10
    

    输出#3

    0
    
    

说明/提示

In the first sample the string consists of five identical letters but you are only allowed to delete 4 of them so that there was at least one letter left. Thus, the right answer is 1 and any string consisting of characters "a" from 1 to 5 in length.

In the second sample you are allowed to delete 4 characters. You cannot delete all the characters, because the string has length equal to 7. However, you can delete all characters apart from "a" (as they are no more than four), which will result in the "aaaa" string.

In the third sample you are given a line whose length is equal to 8, and k=10k=10 , so that the whole line can be deleted. The correct answer is 0 and an empty string.

首页