-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCERC07S.cpp
145 lines (145 loc) · 3.45 KB
/
CERC07S.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
// Ivan Carvalho
// Solution to https://www.spoj.com/problems/CERC07S/
#include <algorithm>
#include <cstdio>
#include <cstdlib>
#include <vector>
#define MP make_pair
#define gc getchar_unlocked
void getint(int &x) {
register int c = gc();
x = 0;
for (; (c < 48 || c > 57); c = gc())
;
for (; c > 47 && c < 58; c = gc()) {
x = (x << 1) + (x << 3) + c - 48;
}
}
using namespace std;
typedef struct node *pnode;
typedef pair<int, int> ii;
const int LIMIT = 1e9 + 10;
const ii INF = MP(LIMIT, LIMIT);
struct node {
int prior, size, rev;
ii val, minimo;
pnode l, r;
node(ii val)
: val(val),
minimo(val),
size(1),
prior(rand()),
rev(0),
l(NULL),
r(NULL) {}
};
inline int sz(pnode t) { return (t == NULL) ? 0 : t->size; }
inline void upd_sz(pnode t) {
if (t) t->size = sz(t->l) + 1 + sz(t->r);
}
inline ii mn(pnode t) { return (t == NULL) ? INF : t->minimo; }
inline void operation(pnode t) {
if (t) t->minimo = min(min(mn(t->l), mn(t->r)), t->val);
}
inline void push(pnode &t) {
if (t && t->rev) {
t->rev = 0;
swap(t->l, t->r);
if (t->l) t->l->rev ^= 1;
if (t->r) t->r->rev ^= 1;
}
}
void split(pnode t, int key, int add, pnode &l, pnode &r) {
if (t == NULL) {
l = r = NULL;
} else {
push(t);
int cur_key = sz(t->l) + add + 1;
if (key < cur_key) {
split(t->l, key, add, l, t->l);
r = t;
} else {
split(t->r, key, add + sz(t->l) + 1, t->r, r);
l = t;
}
}
upd_sz(t);
operation(t);
}
void merge(pnode &t, pnode l, pnode r) {
push(l);
push(r);
if (l == NULL) {
t = r;
} else if (r == NULL) {
t = l;
} else if (l->prior > r->prior) {
merge(l->r, l->r, r);
t = l;
} else {
merge(r->l, l, r->l);
t = r;
}
upd_sz(t);
operation(t);
}
void insert(pnode &t, int key, ii val) {
pnode L, R;
pnode aux = new node(val);
split(t, key - 1, 0, L, R);
merge(t, L, aux);
merge(t, t, R);
}
void erase(pnode &t, int key) {
pnode L, mid, R;
split(t, key - 1, 0, L, R);
split(R, key, sz(L), mid, R);
merge(t, L, R);
}
void reverse(pnode &t, int a, int b) {
pnode L, mid, R;
split(t, a - 1, 0, L, R);
split(R, b, sz(L), mid, R);
mid->rev = 1;
merge(t, L, mid);
merge(t, t, R);
}
int search(pnode t, int add, ii val) {
push(t);
if (mn(t->l) == val) {
return search(t->l, add, val);
}
int cur_key = sz(t->l) + add + 1;
if (t->val == val) return cur_key;
return search(t->r, add + sz(t->l) + 1, val);
}
int query(pnode t, int a, int b, ii val) {
pnode L, mid, R;
split(t, a - 1, 0, L, R);
split(R, b, sz(L), mid, R);
int ans = search(mid, sz(L), val);
merge(t, L, mid);
merge(t, t, R);
return ans;
}
int main() {
int n;
while (scanf("%d", &n) && n) {
vector<ii> entrada;
pnode raiz = NULL;
for (int i = 1; i <= n; i++) {
int davez;
getint(davez);
entrada.push_back(MP(davez, i));
insert(raiz, i, MP(davez, i));
}
sort(entrada.begin(), entrada.end());
for (int i = 1; i <= n; i++) {
int inverte = query(raiz, i, n, entrada[i - 1]);
printf("%d ", inverte);
reverse(raiz, i, inverte);
}
printf("\n");
}
return 0;
}