CF 455 D. Serega and Fun (Scapegoat-Tree)

链接: here 这题的做法比较多。 今天学习了cwj巨巨的替罪羊树做法,调试了一个下午,卧槽! 替罪羊树的好处就是不需要旋转,这样的话,维护起来就很方便了。 Links: edward-mj Scapegoat-Tree 套了一个map, 然后就可以轻松搞定这个题了。! 很优美的做法。 代码: CF

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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
/* ***************

Author :kuangbin

Created Time :2014/9/30 14:29:03

File Name :E:\2014ACM\专题学习\数据结构\ScapeGoatTree\CF455D.cpp

************************************************ */

#include <stdio.h>

#include <string.h>

#include <iostream>

#include <algorithm>

#include <vector>

#include <queue>

#include <set>

#include <map>

#include <string>

#include <math.h>

#include <stdlib.h>

#include <time.h>

using namespace std;

const int MAXN = 200010;

const double alpha = 0.75;

struct Node{

Node *ch[2];

int size,key,nodeCount;

bool exist;

map<int,int>mp;

bool isBad(){

return ch[0]->nodeCount > alpha*nodeCount+5 || ch[1]->nodeCount > alpha*nodeCount + 5;

}

void push_up(){

size = exist + ch[0]->size + ch[1]->size;

nodeCount = 1 + ch[0]->nodeCount + ch[1]->nodeCount;

mp.clear();

if(exist)mp[key]++;

for(map<int,int>::iterator it = ch[0]->mp.begin();it != ch[0]->mp.end();it++)

mp[(*it).first] += (*it).second;

for(map<int,int>::iterator it = ch[1]->mp.begin();it != ch[1]->mp.end();it++)

mp[(*it).first] += (*it).second;

}

};

struct ScapeGoatTree{

Node pool[MAXN];

Node *tail,*root,*null;

Node *bc[MAXN];//内存回收

int bc_top;

void init(){

tail = pool;

null = tail++;

null->ch[0] = null->ch[1] = null;

null->size = null->key = null->nodeCount = 0;

null->mp.clear();

root = null;

bc_top = 0;

}

inline Node *newNode(int key){

Node *p;

if(bc_top)p = bc[--bc_top];

else p = tail++;

p->ch[0] = p->ch[1] = null;

p->size = p->nodeCount = 1;

p->key = key;

p->exist = true;

p->mp.clear();

p->mp[key] = 1;

return p;

}

Node *buildTree(int *a,int l,int r){

if(l >= r)return null;

int mid = (l+r)>>1;

Node *p = newNode(a[mid]);

p->ch[0] = buildTree(a,l,mid);

p->ch[1] = buildTree(a,mid+1,r);

p->push_up();

return p;

}

inline void Travel(Node *p,vector<Node \*>&v){

if(p == null)return;

Travel(p->ch[0],v);

if(p->exist)v.push_back(p);

else bc[bc_top++] = p;

Travel(p->ch[1],v);

}

inline Node *divide(vector<Node \*>&v,int l,int r){

if(l >= r)return null;

int mid = (l+r)/2;

Node *p = v[mid];

p->ch[0] = divide(v,l,mid);

p->ch[1] = divide(v,mid+1,r);

p->push_up();

return p;

}

//重构,注意p要引用

inline void rebuild(Node *&p){

vector<Node *>v;

Travel(p,v);

p = divide(v,0,v.size());

}

//删除第id个元素,返回第id个元素的值

inline int erase(Node *p,int id){

if(p->exist && id == p->ch[0]->size + 1){

p->exist = 0;

p->mp[p->key]--;

p->size--;

return p->key;

}

p->size--;

int res;

if(p->ch[0]->size >= id)

res = erase(p->ch[0],id);

else res = erase(p->ch[1],id - p->ch[0]->size - p->exist);

p->mp[res]--;

return res;

}

//删除一定的点以后重构

void check_erase(){

if(root->size < 0.5*root->nodeCount)

rebuild(root);

}

Node **insert(Node *&p,int id,int val){

if(p == null){

p = newNode(val);

return &null;

}

else {

p->size++;

p->nodeCount++;

p->mp[val]++;

Node ** res;

if(id <= p->ch[0]->size+p->exist)

res = insert(p->ch[0],id,val);

else res = insert(p->ch[1],id-p->ch[0]->size-p->exist,val);

if(p->isBad())res = &p;

return res;

}

}

//在第id个位置插入数val

void insert(int id,int val){

Node **p = insert(root,id,val);

if(*p != null)rebuild(*p);

}

//查询[l,r]之间值为val的数的个数

int query(Node *p,int l,int r,int val){

if(p == null)return 0;

if(l <= 1 && p->size <= r)

return p->mp.count(val)?p->mp[val]:0;

else {

int ans = 0;

if(l <= p->ch[0]->size)

ans += query(p->ch[0],l,r,val);

if(r > p->ch[0]->size+p->exist)

ans += query(p->ch[1],l - p->ch[0]->size - p->exist, r - p->ch[0]->size - p->exist,val);

if(p->exist && p->key == val && l <= p->ch[0]->size+1 && r >= p->ch[0]->size+1)

ans++;

return ans;

}

}

}tree;

int a[MAXN];

int main()

{

int n;

while(scanf("%d",&n) == 1){

tree.init();

for(int i = 0;i < n;i++)scanf("%d",&a[i]);

tree.root = tree.buildTree(a,0,n);

int m;

int op,l,r,k;

scanf("%d",&m);

int ans = 0;

while(m--){

scanf("%d",&op);

if(op == 1){

scanf("%d%d",&l,&r);

l = ((l+ans-1)%n)+1;

r = ((r+ans-1)%n)+1;

if(l > r)swap(l,r);

int v = tree.erase(tree.root,r);

//tree.check_erase(); //有时候可以加上删除重构

tree.insert(l,v);

}

else {

scanf("%d%d%d",&l,&r,&k);

l = ((l+ans-1)%n)+1;

r = ((r+ans-1)%n)+1;

k = ((k+ans-1)%n)+1;

if(l > r)swap(l,r);

ans = tree.query(tree.root,l,r,k);

printf("%d\n",ans);

}

}

}

return 0;

}
------ 本文结束------
  • 本文作者: kuangbin
  • 本文链接: 418.html
  • 版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明出处!
0%