UOJ Logo

NOI.AC

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#158948#10. 小x的城池LightningUZ01155ms83960kbC++114.0kb2022-08-24 07:59:542022-08-24 07:59:56

answer

#include<bits/stdc++.h>
using namespace std;
#define N 100005
#define F(i,l,r) for(int i=(l);i<=(r);++i)
#define D(i,r,l) for(int i=(r);i>=(l);--i)
#define MEM(x,a) memset(x,a,sizeof(x))
int I() {char c=getchar(); int x=0; int f=1; while(c<'0' or c>'9') f=(c=='-')?-1:1,c=getchar(); while(c>='0' and c<='9') x=(x<<1)+(x<<3)+(c^48),c=getchar(); return ((f==1)?x:-x);}

int n,val[N]; char typ[N];
struct node
{
	int len,ans,drs,pos; int li,ri,lo,ro;
	int cl[76],cr[76];

	void prt()
	{
		printf("len=%d ans=%d li=%d ri=%d lo=%d ro=%d drs=%d pos=%d\n",len,ans,li,ri,lo,ro,drs,pos);
		printf("cl: "); F(i,0,75)if(cl[i]) printf("%d,%d ",i,cl[i]); puts("");
		printf("cr: "); F(i,0,75)if(cr[i]) printf("%d,%d ",i,cr[i]); puts("");
	}
};
node sing(int p,int x){char _=typ[p]; node t=(node){1,0,0,-1,-1,-1,-1,-1};MEM(t.cl,0);MEM(t.cr,0); if(_=='A')t.cl[x]=t.cr[x]=1,t.pos=p;else t.li=t.ri=t.lo=t.ro=x; return t;}
node mg_r(node A,node B)
{
	node C; C.ans=A.ans+B.ans; C.len=A.len+B.len; C.drs=A.drs+B.drs;
	F(i,0,B.li-1)C.ans+=A.cr[i];
	F(i,0,75)C.cl[i]=A.cl[i],C.cr[i]=B.cr[i];
	C.li=A.li; C.lo=A.lo; C.ri=B.ri; C.ro=B.ro;
	C.pos=-1;
	if(B.drs==0) {C.pos=A.pos; F(i,B.li,75)C.cr[i]+=A.cr[i]; C.ro=max(C.ro,A.ro);}
	if(A.drs==0) {C.li=max(C.li,B.li);}
	if(A.pos>0 && val[A.pos]<B.li && val[A.pos]>=A.lo && val[A.pos]>=A.ro) C.cl[val[A.pos]]--;
	return C;
}
node mg_l(node A,node B)
{
	node C; C.ans=A.ans+B.ans; C.len=A.len+B.len; C.drs=A.drs+B.drs+1;
	F(i,0,A.ri-1)C.ans+=B.cl[i];
	F(i,0,75)C.cl[i]=A.cl[i],C.cr[i]=B.cr[i];
	C.li=A.li; C.lo=A.lo; C.ri=B.ri; C.ro=B.ro;
	C.pos=-1;
	if(A.drs==A.len-1) {C.pos=B.pos; F(i,A.ri,75)C.cl[i]+=B.cl[i]; C.lo=max(C.lo,B.lo);}
	if(B.drs==B.len-1) {C.ri=max(C.ri,A.ri);}
	if(B.pos>0 && val[B.pos]<A.ri && val[B.pos]>=B.lo && val[B.pos]>=B.ro) C.cr[val[B.pos]]--;
	return C;
}
class SegT
{
public:
	int dir[N]; int rv[N<<2];
	node a[N<<2],ra[N<<2];
#define ls u<<1
#define rs u<<1|1
#define ll ls,L,mid
#define rr rs,mid+1,R
	void up(int u,int L,int R)
	{
		int mid=(L+R)>>1,d=dir[mid];
		if(d==0)a[u]=mg_r(a[ls],a[rs]),ra[u]=mg_l(ra[ls],ra[rs]);
		else    a[u]=mg_l(a[ls],a[rs]),ra[u]=mg_r(ra[ls],ra[rs]);
	}
	void build(int u=1,int L=1,int R=n)
	{
		if(L==1 and R==n)
		{
			MEM(dir,0);
		}
		if(L==R)
		{
			ra[u]=a[u]=sing(L,val[L]);
			return;
		}
		int mid=(L+R)>>1;
		build(ll); build(rr); up(u,L,R);

		// printf("u=%d [%d,%d]\n",u,L,R);
		// a[u].prt();
	}
	void rv1(int u)
	{
		swap(a[u],ra[u]); rv[u]^=1;
	}
	void down(int u,int L,int R)
	{
		if(rv[u])
		{
			int mid=(L+R)>>1;
			dir[mid]^=1;
			rv1(ls); rv1(rs);
			rv[u]=0;
		}
	}
	void rev(int l,int r,int u=1,int L=1,int R=n)
	{
		// printf("rev [%d,%d] in %d[%d,%d]\n",l,r,u,L,R);
		if(l<=L and R<=r) {rv1(u); return;}
		int mid=(L+R)>>1; down(u,L,R);
		if(r<=mid) rev(l,r,ll);
		else if(mid<l) rev(l,r,rr);
		else {rev(l,r,ll),rev(l,r,rr),dir[mid]^=1;}
		up(u,L,R); 
		// printf("pushup u=%d[%d,%d] dir:%d ans=%d\n",u,L,R,dir[mid],a[u].ans);
	}
	void change(int p,int x,int u=1,int L=1,int R=n)
	{
		if(L==R){ra[u]=a[u]=sing(p,x); return;}
		int mid=(L+R)>>1; down(u,L,R);
		if(p<=mid) change(p,x,ll); else change(p,x,rr);
		up(u,L,R);
	}

	void prt(int u=1,int L=1,int R=n)
	{
		printf("u=%d [%d,%d]\n",u,L,R);
		a[u].prt();
		if(L==R)return;
		down(u,L,R); int mid=(L+R)>>1;
		prt(ll);prt(rr);
	}
	void downall(int u=1,int L=1,int R=n)
	{
		if(L==R)return;
		int mid=(L+R)>>1; down(u,L,R);
		downall(ll);downall(rr);
	}
}T;
void flandre()
{
	n=I(); int q=I();
	F(i,1,n)
	{
		int v=I(); char __[10];scanf("%s",__); char c=__[0];
		val[i]=v; typ[i]=c;
	}
	T.build();
	F(_,1,q)
	{
		char o[10];scanf("%s",o);
		if(o[0]=='R')
		{
			int l=I(),r=I();
			T.rev(l,r);
		}
		else
		{
			int p=I(),x=I();
			val[p]=x;
			T.change(p,x);
		}
		printf("%d\n",T.a[1].ans);
		// T.prt();
		// T.downall();
		/*
		F(i,1,n)
		{
			printf("%d",val[i]);
			if(i<n)printf(T.dir[i]?"<-":"->");
		}puts("");
		*/
	}
}
int main()
{
	int t=1;
	while(t-->0){flandre();}
	return 0;
}

详细

小提示:点击横条可展开更详细的信息

Subtask #1:

score: 0
Wrong Answer

Test #1:

score: 10
Accepted
time: 0ms
memory: 1624kb

input:

7 5
0 A
32 B
10 B
27 B
25 A
30 B
10 A
UPDATE 1 1
UPDATE 6 22
UPDATE 1 50
UPDATE 6 62
UPDATE 5 67

output:

2
1
0
2
1

result:

ok 5 number(s): "2 1 0 2 1"

Test #2:

score: 0
Accepted
time: 0ms
memory: 1648kb

input:

10 20
38 A
0 B
2 A
20 A
2 B
31 A
0 B
68 A
53 A
74 B
UPDATE 7 63
UPDATE 7 0
UPDATE 7 66
UPDATE 7 7
UP...

output:

6
6
6
6
6
4
5
4
6
4
1
4
1
6
6
4
6
6
6
4

result:

ok 20 numbers

Test #3:

score: 0
Accepted
time: 0ms
memory: 1932kb

input:

100 100
38 A
0 B
2 A
20 A
2 B
31 A
0 B
68 A
53 A
74 B
37 A
62 A
59 A
70 A
71 A
4 A
44 A
2 B
63 A
22 ...

output:

67
67
67
67
67
67
67
67
67
63
63
66
66
66
70
70
70
70
65
64
65
54
45
69
70
69
69
46
67
67
67
67
67
6...

result:

ok 100 numbers

Test #4:

score: 0
Accepted
time: 5ms
memory: 4184kb

input:

1000 500
38 A
49 A
67 A
60 A
62 A
74 A
31 A
6 A
18 A
23 A
45 A
25 A
37 A
62 A
59 A
70 A
71 A
4 A
44 ...

output:

541
629
540
750
742
701
701
737
737
745
737
701
730
701
764
764
723
463
556
635
627
755
755
452
530
...

result:

ok 500 numbers

Test #5:

score: 0
Accepted
time: 1ms
memory: 1644kb

input:

10 30
38 A
49 A
72 B
2 B
74 B
65 A
74 B
0 B
54 A
2 B
REVERSE 7 9
REVERSE 1 5
REVERSE 4 7
REVERSE 6 7...

output:

4
2
2
2
0
3
3
2
2
2
2
2
1
1
2
2
1
2
1
0
1
2
2
2
2
3
3
3
2
1

result:

ok 30 numbers

Test #6:

score: 0
Accepted
time: 3ms
memory: 2268kb

input:

200 400
38 A
49 A
67 A
60 A
62 A
74 A
31 A
6 A
18 A
23 A
45 A
25 A
37 A
62 A
59 A
70 A
71 A
4 A
44 A...

output:

143
100
52
74
68
74
57
33
42
42
39
27
26
45
45
45
22
26
46
43
47
39
32
22
29
22
23
19
26
26
28
28
19...

result:

ok 400 numbers

Test #7:

score: 0
Accepted
time: 9ms
memory: 4204kb

input:

1000 1000
30 A
59 A
17 A
15 A
65 A
3 A
9 A
60 A
31 A
56 A
16 A
63 A
47 A
47 A
45 A
43 A
28 A
11 A
42...

output:

178
312
311
85
85
242
131
194
128
128
134
134
97
90
90
104
64
104
104
136
113
44
117
109
27
27
27
27...

result:

ok 1000 numbers

Test #8:

score: 0
Accepted
time: 2ms
memory: 2916kb

input:

400 400
4 A
16 A
72 A
53 A
73 B
34 A
72 A
31 A
37 A
9 A
7 A
30 A
53 A
15 A
57 A
21 A
69 A
74 A
38 A
...

output:

186
68
129
129
72
67
75
144
97
11
4
4
12
13
17
36
32
13
17
38
15
15
39
39
15
9
17
31
16
16
31
31
24
...

result:

ok 400 numbers

Test #9:

score: 0
Accepted
time: 0ms
memory: 1632kb

input:

7 4
0 A
32 B
10 B
27 B
25 A
30 B
10 A
REVERSE 2 5
UPDATE 5 30
REVERSE 5 7
UPDATE 2 0

output:

2
2
3
1

result:

ok 4 number(s): "2 2 3 1"

Test #10:

score: 0
Accepted
time: 10ms
memory: 4200kb

input:

1000 1000
65 B
28 A
3 B
48 B
19 B
35 B
19 B
12 B
1 B
29 B
18 A
5 B
38 B
16 B
23 B
19 B
22 B
2 B
31 A...

output:

133
133
121
121
121
115
115
119
115
115
113
104
106
107
109
108
103
103
103
94
94
90
90
90
90
90
90
...

result:

ok 1000 numbers

Test #11:

score: 0
Accepted
time: 10ms
memory: 4204kb

input:

1000 1000
74 A
53 A
32 A
2 B
52 A
19 B
10 B
13 B
15 B
30 B
35 B
15 B
10 B
65 A
64 A
33 A
24 B
32 B
1...

output:

331
319
296
295
286
269
275
252
252
266
265
242
243
232
232
232
227
228
211
222
208
208
209
220
207
...

result:

ok 1000 numbers

Test #12:

score: 0
Accepted
time: 12ms
memory: 4204kb

input:

1000 1000
43 A
42 A
44 A
56 A
63 A
43 B
22 A
65 A
31 B
8 B
45 A
52 A
32 B
2 B
18 A
6 B
14 A
39 A
0 B...

output:

336
328
328
276
281
280
273
273
273
259
258
258
258
270
271
260
259
254
254
254
254
256
256
259
247
...

result:

ok 1000 numbers

Test #13:

score: 0
Accepted
time: 12ms
memory: 4204kb

input:

1000 1000
11 B
13 B
23 B
21 B
59 A
29 B
67 A
22 A
1 A
68 A
7 A
65 A
72 A
4 A
42 A
71 A
30 B
41 B
0 B...

output:

449
449
423
372
340
313
299
300
283
283
305
304
265
242
237
240
234
235
230
222
220
220
219
214
218
...

result:

ok 1000 numbers

Test #14:

score: -10
Wrong Answer
time: 7ms
memory: 4200kb

input:

1000 1000
36 A
12 A
72 A
68 A
25 A
18 A
27 A
52 A
20 A
66 A
15 A
14 A
13 A
29 B
38 A
30 B
24 A
17 A
...

output:

516
515
514
474
474
474
475
438
411
412
424
404
368
362
377
400
365
352
354
354
354
345
345
344
311
...

result:

wrong answer 722nd numbers differ - expected: '271', found: '272'

Subtask #2:

score: 0
Memory Limit Exceeded

Test #16:

score: 35
Accepted
time: 174ms
memory: 40848kb

input:

10000 10000
38 A
49 A
67 A
60 A
62 A
74 A
31 A
6 A
18 A
23 A
45 A
25 A
37 A
62 A
59 A
70 A
71 A
4 A
...

output:

8481
6987
5555
4171
3408
2277
3351
3046
2441
1321
1328
2040
1303
932
1371
1087
1094
1548
1548
925
15...

result:

ok 10000 numbers

Test #17:

score: 0
Accepted
time: 631ms
memory: 83960kb

input:

30000 30000
38 A
49 A
67 A
60 A
62 A
74 A
31 A
6 A
18 A
23 A
45 A
25 A
37 A
62 A
59 A
70 A
71 A
4 A
...

output:

26871
24611
15656
11163
15669
13968
12964
11293
11339
10586
10586
9096
10933
9996
8370
6666
4011
399...

result:

ok 30000 numbers

Test #18:

score: -35
Memory Limit Exceeded

input:

100000 100000
38 A
49 A
67 A
60 A
62 A
74 A
31 A
6 A
18 A
23 A
45 A
25 A
37 A
62 A
59 A
70 A
71 A
4 ...

output:


result:


Subtask #3:

score: 0
Memory Limit Exceeded

Test #26:

score: 35
Accepted
time: 279ms
memory: 83692kb

input:

30000 30000
38 A
49 A
67 A
60 A
62 A
74 A
31 A
6 A
18 A
23 A
45 A
25 A
37 A
62 A
59 A
70 A
71 A
4 A
...

output:

23611
23608
23608
23608
23343
23343
23343
23343
23343
23343
23608
23608
23608
23608
23608
23608
2172...

result:

ok 30000 numbers

Test #27:

score: -35
Memory Limit Exceeded

input:

100000 100000
3 B
15 B
39 B
8 B
5 B
13 B
2 B
4 B
20 B
5 B
21 B
21 B
10 B
22 B
18 B
2 B
29 B
11 B
14 ...

output:


result:


Subtask #4:

score: 0
Skipped