-
Notifications
You must be signed in to change notification settings - Fork 438
/
Persistent-Treap.cpp
103 lines (94 loc) · 1.41 KB
/
Persistent-Treap.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
#include <cstdio>
#include <cstdlib>
#define NIL 0
#define EDITION_COUNT 100000
using namespace std;
struct node
{
node *ch[2];
int key, pr;
node(int _key = 0, int _pr = 0) : key(_key), pr(_pr) { }
}*root[EDITION_COUNT];
int hs = 0;
void rotate(node *&u, int dir)
{
node *o = u->ch[dir];
u->ch[dir] = o->ch[dir ^ 1];
o->ch[dir ^ 1] = u;
u = o;
}
int cmp(int ikey, int ukey)
{
if (ikey == ukey)
return -1;
return ikey < ukey ? 0 : 1;
}
void insert(node *&u, node *prev, int key, int pr)
{
if (prev == NIL)
{
u = new node(key, pr);
return;
}
u = new node(prev->key, prev->pr);
int k = cmp(key, prev->key);
u->ch[k ^ 1] = prev->ch[k ^ 1];
if (k == -1)
{
u->ch[k] = prev->ch[k];
return;
}
insert(u->ch[k], prev->ch[k], key, pr);
if (u->ch[k]->pr > u->pr)
{
rotate(u, k);
}
}
int find(node *&u, int key)
{
if (u == NIL)
{
return -1;
}
else
{
int k = cmp(key, u->key);
if (k == -1)
{
return 1;
}
return find(u->ch[k], key);
}
}
int main()
{
int in, edition, key;
while (true)
{
scanf("%d", &in);
if (in == 1)
{
scanf("%d", &key);
insert(root[hs + 1], root[hs], key, rand());
hs++;
}
else if (in == 2)
{
scanf("%d%d", &edition, &key);
printf("%d\n", find(root[edition], key));
}
else if (in == 3)
{
printf("Current edition : %d\n", hs);
}
else if (in == 0)
{
return 0;
}
else
{
printf("No such command!\n");
}
}
return 0;
}