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 keyPop
PeekMedian
where 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:17 Pop PeekMedian Push 3 PeekMedian Push 2 PeekMedian Push 1 PeekMedian Pop Pop Push 5 Push 4 PeekMedian Pop Pop Pop PopSample Output:
Invalid Invalid 3 2 2 1 2 4 4 5 3Invalid
分析:要用 “树状数组”+“二分查找”才不会超时。
参考:
http://blog.csdn.net/eli850934234/article/details/8864087
正确代码:
#include <iostream> #include <vector> #include <string> #include <stack> using namespace std; int N = 100002; vector<int> bit(N,0); int sum(int i){ int s = 0; while(i>0){ s += bit[i]; i -= i&-i; } return s; } void add(int i, int x){ while(i<N){ bit[i] += x; i += i&-i; } } int find(int x){ int l=0, r=N-1, m=0; while(l<r-1){ if((l+r)%2==0){ m = (l+r)/2; }else{ m = (l+r-1)/2; } if(sum(m)<x){ l = m; }else{ r = m; } } return l+1; } int main(){ int n, i, val; scanf("%d",&n); char str[10]; stack<int> sta; for(i=0; i<n; i++){ scanf("%s",str); if(str[1] == 'o'){ if(sta.size()==0){ printf("Invalid\n"); }else{ int t = sta.top(); printf("%d\n",t); sta.pop(); add(t,-1); } }else if(str[1] == 'u'){ scanf("%d",&val); sta.push(val); add(val,1); }else{ if(sta.size()==0){ printf("Invalid\n"); continue; } int m; if(sta.size()%2==0){ m = find(sta.size()/2); }else{ m = find((sta.size()+1)/2); } printf("%d\n",m); } } return 0; }