题目链接-B.Classical String Problem
题目大意
给你一个字符串 s s s,有 q q q次操作,输入 M M M x x x,表示将字符串最左边的 x x x个字符移动到字符串最右边, M M M − x -x −x,表示将字符串最右边的 x x x个字符移动到最左边。 A A A x x x,表示询问当前字符串第 x x x个位置的字符
解题思路
附上代码
#pragma GCC optimize("-Ofast","-funroll-all-loops")
#include
#define int long long
#define lowbit(x) (x &(-x))
#define endl '\n'
using namespace std;
const int INF=0x3f3f3f3f;
const int dir[4][2]={-1,0,1,0,0,-1,0,1};
const double PI=acos(-1.0);
const double e=exp(1.0);
const double eps=1e-10;
const int M=1e9+7;
const int N=2e5+10;
typedef long long ll;
typedef pair<int,int> PII;
typedef unsigned long long ull;
string s;
signed main(){
ios::sync_with_stdio(false);
cin.tie(0);cout.tie(0);
int q,x,head=0;
cin>>s>>q;
int l=s.length();
while(q--){
char c;
cin>>c>>x;
if(c=='A')
cout<<s[(head+l+x-1)%l]<<endl;
else
head=(head+x)%l;
}
return 0;
}