提交时间:2021-06-21 20:10:24
运行 ID: 20927
#include<bits/stdc++.h> using namespace std; int main(){ string s1,s2,y,x,v="",l=""; cin>>s1>>s2; y=s1; for(int i=0;i<=s1.size();i++){ y=s1; y.insert(i,s2); if(y.size()>=l.size()&&y>l) l=y; } for(int j=0;j<=l.size()-1;j++){ x=l; x.erase(j,1); if(x.size()>=v.size()&&x>v) v=x; } cout<<v; }