Time Limit: 7000/3500 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)
Total Submission(s): 982 Accepted Submission(s): 253
∙ PUSH x: put x on the top of the stack, x must be 0 or 1.
∙ POP: throw the element which is on the top of the stack.
Since it is too simple for Mr. Frog, a famous mathematician who can prove "Five points coexist with a circle" easily, he comes up with some exciting operations:
∙ REVERSE: Just reverse the stack, the bottom element becomes the top element of the stack, and the element just above the bottom element becomes the element just below the top elements... and so on.
∙ QUERY: Print the value which is obtained with such way: Take the element from top to bottom, then do NAND operation one by one from left to right, i.e. If atop,atop−1,⋯,a1 is corresponding to the element of the Stack from top to the bottom, value=atop nand atop−1 nand ... nand a1 . Note that the Stack will not change after QUERY operation. Specially, if the Stack is empty now,you need to print ”Invalid.”(without quotes).
By the way, NAND is a basic binary operation:
∙ 0 nand 0 = 1
∙ 0 nand 1 = 1
∙ 1 nand 0 = 1
∙ 1 nand 1 = 0
Because Mr. Frog needs to do some tiny contributions now, you should help him finish this data structure: print the answer to each QUERY, or tell him that is invalid.
For each test case, the first line contains only one integers N (2≤N≤200000 ), indicating the number of operations.
In the following N lines, the i-th line contains one of these operations below:
∙ PUSH x (x must be 0 or 1)
∙ POP
∙ REVERSE
∙ QUERY
It is guaranteed that the current stack will not be empty while doing POP operation.
/* 双向队列,记录从开头开始到第一个0的位置的1有多少个,因为0与任何nand都是1 比赛的时候竟然想不起来双向队列.......愣是用一个数组加了两个指针模拟了一个双向队列。 */ #include<bits/stdc++.h> #define N 500000 using namespace std; int s[N]; deque<int >q;//用来存放所有0的位置 int main() { //freopen("C:\\Users\\acer\\Desktop\\in.txt","r",stdin); int t,n; char op[20]; scanf("%d",&t); int Case=1; while(t--) { memset(s,-1,sizeof s); int f=1; scanf("%d",&n); int r=250001; int l=r-1; int fa=0;///记录栈里面的总数 q.clear(); printf("Case #%d:\n",Case++); while(n--) { scanf("%s",op); int a; if(op[0]=='P'&&op[1]=='U') { scanf("%d",&a); if(f) { s[r]=a; if(!a) q.push_back(r); r++; } else { s[l]=a; if(!a) q.push_front(l); l--; } fa++; } else if(op[0]=='P'&&op[1]=='O') { if(!fa) continue; if(f) { if(s[r-1]==0) q.pop_back(); r--; } else { if(s[l+1]==0) q.pop_front(); l++; } fa--; } else if(op[0]=='Q') { //cout<<"cur="<<cur<<endl; int cur=0; if(fa==0) { cout<<"Invalid."<<endl; } else if(fa==1) { cout<<s[l+1]<<endl; } else { if(f) { if(q.empty()) cur=fa; else { cur=q.front()==r-1?fa-1:q.front()-l; } } else { if(q.empty()) cur=fa; else { cur=q.back()==l+1?fa-1:r-q.back(); } } if(cur%2==0) cout<<"0"<<endl; else cout<<"1"<<endl; } } else { f^=1; } } } return 0; }