CF1230B.Ania and Minimizing

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Ania has a large integer SS . Its decimal representation has length nn and doesn't contain any leading zeroes. Ania is allowed to change at most kk digits of SS . She wants to do it in such a way that SS still won't contain any leading zeroes and it'll be minimal possible. What integer will Ania finish with?

输入格式

The first line contains two integers nn and kk ( 1n2000001 \leq n \leq 200\,000 , 0kn0 \leq k \leq n ) — the number of digits in the decimal representation of SS and the maximum allowed number of changed digits.

The second line contains the integer SS . It's guaranteed that SS has exactly nn digits and doesn't contain any leading zeroes.

输出格式

Output the minimal possible value of SS which Ania can end with. Note that the resulting integer should also have nn digits.

输入输出样例

  • 输入#1

    5 3
    51528
    

    输出#1

    10028
    
  • 输入#2

    3 2
    102
    

    输出#2

    100
    
  • 输入#3

    1 1
    1
    

    输出#3

    0
    

说明/提示

A number has leading zeroes if it consists of at least two digits and its first digit is 00 . For example, numbers 0000 , 0006900069 and 01010101 have leading zeroes, while 00 , 30003000 and 10101010 don't have leading zeroes.

首页