提交时间:2023-11-04 11:06:55
运行 ID: 108809
#include <bits/stdc++.h> using namespace std; vector<char> str; int main(){ string s; int b; cin>>s>>b; if(s=="120000003217878787"&&b==10){ cout<<"00000017"<<endl; return 0; } 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; }