Problem4071--CF118 - C. Fancy Number

4071: CF118 - C. Fancy Number

[Creator : ]
Time Limit : 2.000 sec  Memory Limit : 256 MiB

Description

A car number in Berland consists of exactly $n$ digits. A number is called beautiful if it has at least $k$ equal digits. Vasya wants to change the digits in his car's number so that the number became beautiful. To replace one of $n$ digits Vasya has to pay the sum of money, equal to the absolute difference between the old digit and the new one.
Help Vasya: find the minimum sum of money he should pay to make the number of his car beautiful. You should also find the resulting beautiful number. If there are several such numbers, then print the lexicographically minimum one.

Input

The first line contains two space-separated integers $n,k\ (2≤n≤10^4,\ 2≤k≤n)$ which represent how many digits the number has and how many equal digits a beautiful number should have. 
The second line consists ofndigits. It describes the old number of Vasya's car. It is guaranteed that the number contains no spaces and only contains digits.

Output

On the first line print the minimum sum of money Vasya needs to change the number. 
On the second line print the car's new number. If there are several solutions, print the lexicographically minimum one.

Sample 1 Input

6 5
898196

Sample 1 Output

4
888188

In the first sample replacing the second digit with an "8" costs |9-8|=1. Replacing the fifth digit with an "8" costs the same. Replacing the sixth digit costs |6-8|=2. As a result, Vasya will pay 1+1+2=4 for a beautiful number "888188".

The lexicographical comparison of strings is performed by the < operator in modern programming languages. The string $x$ is lexicographically smaller than the string $y$, if there exists such $i\ (1≤i≤n)$, that $x_i<y_i$, and for any $j\ (1≤j<i)\ x_j=y_j$. The strings compared in this problem will always have the length $n$.

Sample 2 Input

3 2
533

Sample 2 Output

0
533

Sample 3 Input

10 6
0001112223

Sample 3 Output

3
0000002223

HINT

Source/Category