提交时间:2023-11-04 10:50:51
运行 ID: 108778
#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]; for(int j = 1;j<str.size();j++){ if(str[j]>max2) { max2 = str[j]; max1 = j; } } str.erase(str.begin()+max1); } for(int i = 0;i<str.size();i++){ cout<<str[i]; } cout<<endl; return 0; }