B. Ania and Minimizing 1000 / 贪心
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了B. Ania and Minimizing 1000 / 贪心 相关的知识,希望对你有一定的参考价值。
https://codeforces.com/problemset/problem/1230/B
#include<bits/stdc++.h>
using namespace std;
int main()
{
int n,m; cin>>n>>m;
string s; cin>>s;
if(n==1&&m>=1) puts("0");
else
{
if(m&&s[0]!='1') s[0]='1',m--;
for(int i=1,j=1;i<s.size()&&j<=m;i++)
{
if(s[i]!='0') s[i]='0',j++;
}
cout<<s<<endl;
}
return 0;
}
以上是关于B. Ania and Minimizing 1000 / 贪心 的主要内容,如果未能解决你的问题,请参考以下文章
B. A and B and Compilation Errors1100 / 思维
B. Jzzhu and Sequences1300 / 思维 规律
B. Vanya and Lanterns1200 / 贪心 二分