1057. Stack (30)
Stack is one of the most fundamental data structures, which is based on the principle of Last In First Out (LIFO). The basic operations include Push (inserting an element onto the top position) and Pop (deleting the top element). Now you are supposed to implement a stack with an extra operation: PeekMedian -- return the median value of all the elements in the stack. With N elements, the median value is defined to be the (N/2)-th smallest element if N is even, or ((N+1)/2)-th if N is odd.
Input Specification:
Each input file contains one test case. For each case, the first line contains a positive integer N (<= 105). Then N lines follow, each contains a command in one of the following 3 formats:
Push key Pop PeekMedianwhere key is a positive integer no more than 105.
Output Specification:
For each Push command, insert key into the stack and output nothing. For each Pop or PeekMedian command, print in a line the corresponding returned value. If the command is invalid, print "Invalid" instead.
Sample Input:17PopPeekMedianPush 3PeekMedianPush 2PeekMedianPush 1PeekMedianPopPopPush 5Push 4PeekMedianPopPopPopPopSample Output:
InvalidInvalid322124453Invalid
注意点:
1.树状数组的常见操作
学习:
1 int lowbit(int val){ 2 return val&(-val); 3 } 4 int sum(int val){ 5 int res=0; 6 while(val>0){ 7 res+=line[val]; 8 val-=lowbit(val); 9 }10 return res;11 }12 void add(int val,int x){13 while(val
这里要注意二分查找的书写。对于区间[a,b),不断二分,最后返回l。
2.string的操作一般要比char的操作时间长。这里用的string会超时。
1 #include2 #include 3 #include 4 #include 5 #include 6 #include