标签:des style blog http color os strong io
传送门:http://poj.org/problem?id=1442
Time Limit: 1000MS | Memory Limit: 10000K | |
Description
N Transaction i Black Box contents after transaction Answer
(elements are arranged by non-descending)
1 ADD(3) 0 3
2 GET 1 3 3
3 ADD(1) 1 1, 3
4 GET 2 1, 3 3
5 ADD(-4) 2 -4, 1, 3
6 ADD(2) 2 -4, 1, 2, 3
7 ADD(8) 2 -4, 1, 2, 3, 8
8 ADD(-1000) 2 -1000, -4, 1, 2, 3, 8
9 GET 3 -1000, -4, 1, 2, 3, 8 1
10 GET 4 -1000, -4, 1, 2, 3, 8 2
11 ADD(2) 4 -1000, -4, 1, 2, 2, 3, 8
Input
Output
Sample Input
7 4 3 1 -4 2 8 -1000 2 1 2 6 6
Sample Output
3 3 1 2
Source
1 #include<set> 2 #include<ctime> 3 #include<queue> 4 #include<cstdio> 5 #include<cstdlib> 6 #include<cstring> 7 #include<iostream> 8 #include<algorithm> 9 using namespace std; 10 const int N = 100100; 11 #define L(i) (T[i].s[0]) 12 #define R(i) (T[i].s[1]) 13 #define For(i,n) for(int i=1;i<=n;i++) 14 #define Rep(i,l,r) for(int i=l;i<=r;i++) 15 16 struct treap{ 17 int size,s[2],v,pri; 18 void Sets(int x,int y){ 19 size = 1;v = x;pri = y; 20 } 21 }T[N]; 22 23 int n,m,A[N],size,Lim,now,level = 0; 24 int tot,root; 25 int read(){ 26 char ch = getchar(); int num = 0 , q = 1; 27 while(ch>‘9‘||ch<‘0‘){ 28 if(ch==‘-‘) q = -1; 29 ch = getchar(); 30 } 31 while(ch>=‘0‘&&ch<=‘9‘){ 32 num = num * 10 + ch - ‘0‘; 33 ch = getchar(); 34 } 35 return num * q; 36 } 37 38 void Update(int i){ 39 T[i].size = T[L(i)].size + T[R(i)].size + 1; 40 } 41 42 void Rot(int &y,int f){ 43 int x = T[y].s[!f]; 44 T[y].s[!f] = T[x].s[f]; 45 T[x].s[f] = y; 46 Update(y);Update(x); 47 y = x; 48 } 49 50 void Insert(int &i,int val){ 51 if(!i){ 52 T[i=++tot].Sets(val,rand()); 53 return; 54 } 55 int f = T[i].v > val; 56 Insert(T[i].s[!f],val); 57 if(T[T[i].s[!f]].pri > T[i].pri) Rot(i,f); 58 else Update(i); 59 } 60 61 int Rank(int i,int kth){ 62 if(T[L(i)].size + 1 == kth) return i; 63 else if(T[L(i)].size >=kth) return Rank(L(i),kth); 64 else return Rank(R(i),kth - T[L(i)].size - 1); 65 } 66 67 int main(){ 68 srand(time(NULL)); 69 n = read(); m = read(); 70 For(i,n) A[i] = read(); 71 For(i,m) { 72 Lim = read(); 73 Rep(i,now+1,Lim) Insert(root,A[i]); now = Lim; 74 level++;printf("%d\n",T[Rank(root,level)].v); 75 } 76 return 0; 77 }
Black Box(POJ 1442·TREAP实现),布布扣,bubuko.com
标签:des style blog http color os strong io
原文地址:http://www.cnblogs.com/kjerome/p/3885542.html