提交时间:2023-11-04 10:54:34

运行 ID: 108790

#include <bits/stdc++.h> using namespace std; vector<char> str; int main(){ string s; int b; cin>>s>>b; for(int i = 0;i<s.size();i++) str.push_back(s[i]); for(int i = 0;i<b;i++){ int max1 = 0,max2 = str[0]-str[1]; for(int j = 1;j<str.size()-1;j++){ if(str[j]-str[j+1]>max2) { max2 = str[j]-str[j+1]; max1 = j; } } str.erase(str.begin()+max1); } for(int i = 0;i<str.size();i++){ cout<<str[i]; } cout<<endl; return 0; }