AcWing 3538. 字符串操作
原题链接
简单
#include<bits/stdc++.h>
using namespace std;
using ll = long long;
using pii = pair<int,int>;
const int N = 1e6+10;
int t,n,m,k,l,r,x,y;
int f[N];
string str,op;
void solve(){
cin>>str;
cin>>n;
for(int t = 1;t<=n;t++){
cin>>op;
int i = op[1]-'0';
int len = op[2]-'0';
if(op[0]-'0'==1){
str.replace(i,len,op.substr(3));
}else{
reverse(str.begin()+i,str.begin()+i+len);
}
cout<<str<<"\n";
}
}
int main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
solve();
return 0;
}