-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path5Queries.cpp
75 lines (72 loc) · 1.26 KB
/
5Queries.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#include<bits/stdc++.h>
#include<string>
using namespace std;
#define ll long long
#define REP(i, n) FOR(i, 0, (n))
#define FOR(i, a, b) for(int i=(a); i<(b); i++)
typedef vector<ll> vl;
#define PB push_back
#define ios() ios::sync_with_stdio(false); cin.tie(0);
#define scan(a,n) for(ll i=0;i<n;i++) cin>>a[i];
#define print(a,n) for(ll i=0;i<n;i++) cout<<a[i]<<" ";
#define test() ll t; cin>>t; while(t--)
#define endl "\n"
int main()
{
#ifndef ONLINE_JUDGE
freopen ("input.txt","r",stdin);
freopen ("output.txt","w",stdout);
#endif
ios()
ll n,q;
cin>>n;
vl ar(n+1);
scan(ar,n)
cin>>q;
vector<string> que(q+1);
while(q--)
{
// cout<<"yes\n";
string str;
cin>>str;
if(str == "Left")
{
ll temp=ar[0];
FOR(i,0,n-1) ar[i]=ar[i+1];
ar[n-1]=temp;
// print(ar,n)
// cout<<endl;
}
else if(str == "Right")
{
ll temp=ar[n-1];
for(ll i=n-1;i>0;i--) ar[i]=ar[i-1];
ar[0]=temp;
// print(ar,n)
// cout<<endl;
}
else if(str == "Update")
{
ll pos,val;
cin>>pos>>val;
ar[pos+1]=val;
// print(ar,n)
// cout<<endl;
}
else if(str == "Increment")
{
ll pos;
cin>>pos;
ar[pos-1]++;
// print(ar,n)
// cout<<endl;
}
else if(str=="?")
{
ll pos;
cin>>pos;
cout<<ar[pos-1]<<endl;
}
}
return 0;
}