contest 1204 D Kirk and a Binary String
题意:01串换最多的0使得任意子串的最长上升子序列(包含等于)大小不变。
00011010111
00001010000
显然,任意子串的最长上升子序列与后面有关,与前面无关。
当前数为1变成0而不影响其后所有区间LIS数量:
->其后取得所有的LIS的必定是1开头
->其后所有子区间里(固定不动的)1的数量都要>=(固定不动的)0的数量
可为0的1不计入数量,因为为0为1都可,都+1等于都不加。
10001111
10000000
#include <bits/stdc++.h>
using namespace std;
int main(){
string s;
int cnt[2]={0};
while(cin>>s){
for(int i=s.length()-1;i>=0;i--){
if(s[i]=='1'&&cnt[1]>=cnt[0]){
s[i]='0';
}
else{
cnt[s[i]-'0']++;
}
}
cout<<s<<endl;
}
return 0;
}