UOJ Logo

NOI.AC

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#211265#3802. 印章drdilyor804325ms220372kbC++113.5kb2024-08-10 10:37:332024-08-10 12:37:38

answer

#include<bits/stdc++.h>
using namespace std;
#pragma GCC optimize("O3,unroll-loops")
#pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt")
void ts(){cout<<"IAKIOI\n";}
bool Mbe;
inline int read(){
	int n=0,f=1,ch=getchar();
	while(ch<'0'||ch>'9'){
		if(ch=='-')f=-1;
		ch=getchar();
	}
	while(ch>='0'&&ch<='9'){
		n=n*10+ch-'0';
		ch=getchar();
	}
	return n*f;
}
int n;
int x1[4000005],y[4000005],x2[4000005],y2[4000005];
int mp[8000005];
int c[200005];
struct item{
	int ql;int qr;int delta;
};
vector<item> l[8000005];
int mp2[8000005];
int val[8000005];
struct node{
	int val,occ,rval;
}seg[8000005*4];
int tag[8000005*4];
node merge(node a,node b){
	if(a.val<b.val)return a;
	if(a.val>b.val)return b;
	return (node){a.val,a.occ+b.occ,a.rval+b.rval};
}
void build(int id,int l,int r){
	if(l==r){seg[id]={0,1,val[l]};return;}
	int mid=(l+r)/2;
	build(id*2,l,mid),build(id*2+1,mid+1,r);
	seg[id]=merge(seg[id*2],seg[id*2+1]);
}
void pushdown(int id){
	if(!tag[id])return;
	tag[id*2]+=tag[id],tag[id*2+1]+=tag[id];
	seg[id*2].val+=tag[id],seg[id*2+1].val+=tag[id];
	tag[id]=0;
}
void modify(int id,int l,int r,int ql,int qr,int d){
	if(l==ql&&r==qr){seg[id].val+=d;tag[id]+=d;return;}
	pushdown(id);
	int mid=(l+r)/2;
	if(qr<=mid)modify(id*2,l,mid,ql,qr,d);
	else if(ql>mid)modify(id*2+1,mid+1,r,ql,qr,d);
	else modify(id*2,l,mid,ql,mid,d),modify(id*2+1,mid+1,r,mid+1,qr,d);
	seg[id]=merge(seg[id*2],seg[id*2+1]);
}
int w,L,v,m;
char s[2005][2005];
void solve(){
	w=read(),L=read(),v=read(),m=read();
	for(int i=1;i<=v;i++){
		s[i][1]=getchar();
		while(s[i][1]!='#'&&s[i][1]!='.')s[i][1]=getchar();
		for(int j=2;j<=m;j++)s[i][j]=getchar();
	}
	//i<=x<=w-n+i j<=y<=l-m+j
	n=0;
	vector<int> lsh;
	for(int i=1;i<=v;i++){
		for(int j=1;j<=m;j++){
			if(s[i][j]=='#'){
				++n;
				x1[n]=i,y[n]=j-1,x2[n]=w-v+i+1,y2[n]=L-m+j;
				//cout<<x1[n]<<" "<<y[n]<<" "<<x2[n]<<" "<<y2[n]<<"\n";
				lsh.push_back(x1[n]);
				lsh.push_back(x2[n]);
			}
		}
	}
	if(!n){printf("0\n");return;}
	sort(lsh.begin(),lsh.end());
	for(int i=1;i<=2*n;i++)mp[i]=0;
	for(int i=1;i<=n;i++){
		int v=lower_bound(lsh.begin(),lsh.end(),x1[i])-lsh.begin()+1;
		mp[v]=x1[i];
		x1[i]=v;
		v=lower_bound(lsh.begin(),lsh.end(),x2[i])-lsh.begin()+1;
		mp[v]=x2[i];
		x2[i]=v;
	}
	lsh.clear();
	for(int i=1;i<=n;i++){
		lsh.push_back(y[i]);lsh.push_back(y2[i]);
	}
	sort(lsh.begin(),lsh.end());
	for(int i=1;i<=2*n;i++)mp2[i]=0;
	for(int i=1;i<=n;i++){
		int v=lower_bound(lsh.begin(),lsh.end(),y[i])-lsh.begin()+1;
		mp2[v]=y[i];
		y[i]=v;
		v=lower_bound(lsh.begin(),lsh.end(),y2[i])-lsh.begin()+1;
		mp2[v]=y2[i];
		y2[i]=v;
	}
	for(int i=1;i<=2*n;i++)l[i].clear();
	for(int i=1;i<=n;i++){
		l[x1[i]].push_back((item){y[i],y2[i],1});
		l[x2[i]].push_back((item){y[i],y2[i],-1});
	}
	for(int i=1;i<=2*n;i++)val[i]=mp2[i+1]-mp2[i];
	long long res=0;
	vector<int> d;
	for(int i=1;i<=2*n;i++)if(!l[i].empty())d.push_back(i);
	for(int i=1;i<=4*n;i++)tag[i]=0,seg[i].val=seg[i].occ=seg[i].rval=0;
	build(1,1,2*n);
	long long tot=0;for(int i=1;i<=2*n;i++)tot+=val[i];
	for(int i=0;i<(int)d.size()-1;i++){
		int len=mp[d[i+1]]-mp[d[i]];
		for(int j=0;j<(int)l[d[i]].size();j++){
			int ql=l[d[i]][j].ql,qr=l[d[i]][j].qr;
			int delta=l[d[i]][j].delta;
			//cout<<ql<<" "<<qr<<" "<<delta<<"\n";
			if(ql<=qr-1)modify(1,1,2*n,ql,qr-1,delta);
		}
		res+=len*(tot-seg[1].rval);
	}
	cout<<res<<"\n";
}
bool Med;
signed main(){
	//cerr<<(&Med-&Mbe)/1048576.00<<"MB\n";
	int t=read();
	while(t--)solve();
	return 0;
}

详细

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

Test #1:

score: 5
Accepted
time: 44ms
memory: 189028kb

input:

2040
20 2
1 1
.
24 4
1 2
.#
24 3
5 2
.#
#.
..
.#
##
36 35
1 4
#..#
1 47
1 7
##..#.#
4 9
2 7
.......
...

output:

0
72
71
1260
47
0
173
899
40
58
81
1147
194
63
515
455
1166
1230
671
42
21
0
32
802
275
405
262
832
...

result:

ok 2040 tokens

Test #2:

score: 5
Accepted
time: 63ms
memory: 189044kb

input:

3691
50 41
1 1
#
10 43
5 4
....
....
....
....
#...
3 1
2 1
.
#
13 8
7 7
####..#
#.#....
.....##
..#...

output:

2050
240
2
100
70
1268
251
239
351
0
331
153
44
1070
0
6
1512
206
287
123
24
1338
0
1967
108
2
700
8...

result:

ok 3691 tokens

Test #3:

score: 5
Accepted
time: 36ms
memory: 189416kb

input:

307
19 2
1 1
.
4 6
3 3
#..
###
#.#
1 11
1 8
.#####..
16 7
10 5
.###.
.###.
##...
.#.#.
.###.
...#.
#...

output:

0
22
8
93
1666
72
216
137
341
73
32
431
605
100
267
0
105
218
447
315
228
308
559
291
491
66
135
460...

result:

ok 307 tokens

Test #4:

score: 5
Accepted
time: 53ms
memory: 189364kb

input:

1151
2 2
1 2
##
4 90
2 1
#
.
4 3
2 2
..
..
55 39
8 8
....#...
......#.
...#..#.
#......#
##.#...#
.....

output:

4
270
0
2127
0
66
162
157
156
102
243
752
132
2969
38
579
34
93
204
585
211
28
5692
99
4221
193
220
...

result:

ok 1151 tokens

Test #5:

score: 5
Accepted
time: 267ms
memory: 190548kb

input:

142992
1 71640447
1 5
.#.#.
1 32
1 16
.##..#.#.##.#.##
1 128754717
1 13
#...#.#####.#
1 412912033
1 ...

output:

71640445
31
128754717
412912031
975015166
0
29
444235501
674661506
11
706613090
47732810
277285597
2...

result:

ok 142992 tokens

Test #6:

score: 5
Accepted
time: 308ms
memory: 191408kb

input:

182430
1 462437573
1 2
..
1 4
1 2
#.
2 2
1 1
#
1 117654376
1 6
.#..##
1 3
1 2
##
1 4
1 4
...#
1 2
1 ...

output:

0
3
4
117654375
3
1
1
0
7299890
14
990167632
457436593
696745646
6
4
5694018
768431164
992637478
865...

result:

ok 182430 tokens

Test #7:

score: 5
Accepted
time: 282ms
memory: 190108kb

input:

167051
949063550 696367111
1 9
#.####...
2 5
1 4
....
18713003 154314157
1 6
......
144789507 649449...

output:

660896639621713400
0
0
94033480021082343
14
0
13
3886181550
12
0
12660865871664577
12134798759558046...

result:

ok 167051 tokens

Test #8:

score: 5
Accepted
time: 313ms
memory: 191612kb

input:

182067
1 970907619
1 5
.....
1 11
1 6
..#.#.
588221550 1
1 1
#
1 16
1 8
###.#.#.
1 13
1 9
.#...#...
...

output:

0
8
588221550
15
9
0
22
0
16
0
4
4
7306729569
1151777238
15
0
1
1194881000
14660025372894864
4912625...

result:

ok 182067 tokens

Test #9:

score: 5
Accepted
time: 81ms
memory: 189820kb

input:

49
518642469 504232726
3 66
...#...............#............#.................................
........

output:

261516504407313028
453106527
5119122350
186
232064064928356632
98029571878906
8250
9105531720
279588...

result:

ok 49 tokens

Test #10:

score: 5
Accepted
time: 94ms
memory: 190320kb

input:

340
2 305388993
1 1
#
6 450728609
3 12
............
............
..#.........
23 55
12 32
#.#...###....

output:

610777986
1802914392
1263
173
905130490
1288224615
340953318379437403
262
470
12
83
17801964522
1063...

result:

ok 340 tokens

Test #11:

score: 5
Accepted
time: 563ms
memory: 217748kb

input:

9859
39 2
27 1
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
.
#
.
.
.
464574874 21687964
9 3
...
.#.
...

output:

26
10075683120928562
108447284
245291486
463190331
85
4396927262
1723136818
124
2211684557
399320240...

result:

ok 9859 tokens

Test #12:

score: 5
Accepted
time: 412ms
memory: 207240kb

input:

5532
283728969 997644030
17 11
#.........#
........#..
..#........
...........
#...#...#..
#.....#.....

output:

283060512060905035
7568717471
11755017428
9772809760
289
59
924
2150950717
23223134428
55
443
158767...

result:

ok 5532 tokens

Test #13:

score: 5
Accepted
time: 483ms
memory: 220372kb

input:

419
61075512 474658573
4 11
###...#....
.....#...##
###..###..#
#.##.#..###
2 42
2 24
...#.....####....

output:

28990015371164372
79
269111273231907261
1579097258
1630
1894031183
17382440916
1370334595
4007068763...

result:

ok 419 tokens

Test #14:

score: 0
Time Limit Exceeded

input:

116
658506323 6
2 6
......
.....#
2 465009927
2 3
.#.
###
4 2
2 2
..
..
3 109507599
2 4
##..
...#
47...

output:


result:


Test #15:

score: 5
Accepted
time: 378ms
memory: 199820kb

input:

498
217 913116486
174 8
...#...#
........
........
#.##....
.......#
#.......
........
........
.......

output:

198146277411
1023
57899579977927847
31565622824
368848973333502232
90997334277172225
196242839064
25...

result:

ok 498 tokens

Test #16:

score: 5
Accepted
time: 861ms
memory: 201088kb

input:

1152
6 45902942
3 1000
................................................................................

output:

0
209376371680076696
4649
1479505163498
430166073598
11036
2205890710
4864004338
0
3036345585
861188...

result:

ok 1152 tokens

Test #17:

score: 0
Time Limit Exceeded

input:

3328
5 710527822
4 200
.............................................#..................................

output:

3552638778
231664700376
3842432301
40587828167
49855445094
328
5888
955734665747130
28266696684
2652...

result:


Test #18:

score: 5
Accepted
time: 87ms
memory: 193272kb

input:

248
625825389 5
4 3
.##
.#.
#..
.##
27877511 627106582
3 2
.#
#.
..
2317584 8
3 6
.#...#
..#...
...#...

output:

3129126942
17482170010770818
16223080
627483052088124075
50311269489675719
4836850842
9
389067633985...

result:

ok 248 tokens

Test #19:

score: 0
Time Limit Exceeded

input:

165923
21611739 641706900
9 3
..#
...
#..
...
.#.
...
.##
...
...
283865732 7
2 6
####..
....#.
3146...

output:

13868400753885292
1703194387
33719183009361319
155779528596017395
73594557356941127
224310909
520151...

result:


Test #20:

score: 0
Time Limit Exceeded

input:

566
579629199 26826670
3 2000
.........................................................................

output:


result: