QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#328256#833. Cells BlockingwYYSZLWA 368ms122568kbC++141.6kb2024-02-15 18:38:382024-02-15 18:38:40

Judging History

你现在查看的是最新测评结果

  • [2024-02-15 18:38:40]
  • 评测
  • 测评结果:WA
  • 用时:368ms
  • 内存:122568kb
  • [2024-02-15 18:38:38]
  • 提交

answer

#include<bits/stdc++.h>
#define int long long 
using namespace std;
int n,m;
char a[3005][3005];
bool f[3005][3005];
bool g[3006][3005];
int ans;
vector<int>xl[6005];
int num;
signed main(){
	cin.tie(0)->sync_with_stdio(0);
	//freopen("1.in","r",stdin);
	cin>>n>>m;
	for(int i=1;i<=n;++i)
		for(int j=1;j<=m;++j){
			cin>>a[i][j];
			num+=(a[i][j]=='.');
		}
	if(a[1][1]=='*'){cout<<num*(num-1)/2<<'\n';return 0;}
	f[1][1]=1;
	for(int i=1;i<=n;++i)
		for(int j=1;j<=m;++j){
			if(a[i][j]=='*')continue;
			if(i==j and i==1)continue;
			f[i][j]=(f[i-1][j] or f[i][j-1]);
		}
	if(!f[n][m]){cout<<num*(num-1)/2<<'\n';return 0;}
	g[n][m]=1;
	for(int i=n;i;--i)
		for(int j=m;j;--j){
			if(g[i][j]=='*')continue;
			if(i==n and j==m)continue;
			g[i][j]=(g[i+1][j] or g[i][j+1]);
		}
	for(int i=1;i<=n;++i)
		for(int j=1;j<=m;++j){
			if(f[i][j] and g[i][j])
				xl[i+j].push_back(i);
		}
	int tp=0;
	for(int i=1;i<=n+m;++i){
		if(xl[i].size()==1)
			ans+=num-1-(tp++);
	}
	for(int i=2;i<=n+m;++i){
		if(xl[i].size()==1)continue;
		int x1=xl[i][1],x2=*(--xl[i].end());
		if(x1==x2)++ans;
		for(int j=i+1;j<=n+m;++j){
			if(!f[x1][j-x1] or !g[x1][j-x1])++x1;
			if(f[x2+1][j-x2-1] and g[x2+1][j-x2-1])++x2;
			if(x1==x2 and xl[j].size()!=1)++ans;
		}
	}
	for(int i=2;i<=n+m;++i){
		if(xl[i].size()==1)continue;
		int x1=xl[i][0],x2=*(--(--xl[i].end()));
		for(int j=i+1;j<=n+m;++j){
			if(!f[x1][j-x1] or !g[x1][j-x1])++x1;
			if(f[x2+1][j-x2-1] and g[x2+1][j-x2-1])++x2;
			if(x1==x2 and xl[j].size()!=1)++ans;
		}
	}
	cout<<ans<<'\n';
	return 0;
}

详细

Test #1:

score: 100
Accepted
time: 1ms
memory: 3868kb

input:

3 3
...
...
...

output:

17

result:

ok 1 number(s): "17"

Test #2:

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

input:

3 3
.**
.*.
...

output:

15

result:

ok 1 number(s): "15"

Test #3:

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

input:

3 4
****
....
****

output:

6

result:

ok 1 number(s): "6"

Test #4:

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

input:

5 5
*....
.*.*.
*****
*.***
..*..

output:

66

result:

ok 1 number(s): "66"

Test #5:

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

input:

10 10
...***.*..
**...*.***
...***.*..
.**...*.*.
.*****..*.
..*.****.*
.**...****
..*..*.*.*
*.*.**....
....**...*

output:

1378

result:

ok 1 number(s): "1378"

Test #6:

score: 0
Accepted
time: 329ms
memory: 122312kb

input:

3000 3000
.....................................................................................................................................................................................................................................................................................................

output:

17999999

result:

ok 1 number(s): "17999999"

Test #7:

score: 0
Accepted
time: 329ms
memory: 122568kb

input:

3000 3000
...................................................................................................................*......................................................................................................................................................................*..........

output:

17981671

result:

ok 1 number(s): "17981671"

Test #8:

score: 0
Accepted
time: 340ms
memory: 122344kb

input:

3000 3000
.....................................................................................................................................................................................................................................................................................................

output:

17963615

result:

ok 1 number(s): "17963615"

Test #9:

score: 0
Accepted
time: 363ms
memory: 122408kb

input:

3000 3000
.........................................................................................................*...........................................................................................................................................................................................

output:

17945165

result:

ok 1 number(s): "17945165"

Test #10:

score: 0
Accepted
time: 327ms
memory: 122348kb

input:

3000 3000
......................................................................................................................................*........................................................................................................................................*.....................

output:

17928211

result:

ok 1 number(s): "17928211"

Test #11:

score: 0
Accepted
time: 307ms
memory: 121828kb

input:

3000 3000
...........................................*.........................................................................................................................................................................................................................................................

output:

17911522

result:

ok 1 number(s): "17911522"

Test #12:

score: 0
Accepted
time: 329ms
memory: 121880kb

input:

3000 3000
..............................*................................................................................................................*.....................................................................................................................................................

output:

17892283

result:

ok 1 number(s): "17892283"

Test #13:

score: 0
Accepted
time: 322ms
memory: 121560kb

input:

3000 3000
................................................................*....*................................................................................................................................................................................*..............................................

output:

17873837

result:

ok 1 number(s): "17873837"

Test #14:

score: 0
Accepted
time: 340ms
memory: 121344kb

input:

3000 3000
............................................................................................*.............................................................................*.....................................................................................................*....................

output:

17856701

result:

ok 1 number(s): "17856701"

Test #15:

score: 0
Accepted
time: 351ms
memory: 121460kb

input:

3000 3000
......................................*..........................................................................................................................................................*...................................................................................................

output:

17837857

result:

ok 1 number(s): "17837857"

Test #16:

score: 0
Accepted
time: 331ms
memory: 120748kb

input:

3000 3000
.................................................................................................................................................................................................................................*...................................................................

output:

17819731

result:

ok 1 number(s): "17819731"

Test #17:

score: 0
Accepted
time: 352ms
memory: 102664kb

input:

3000 3000
......**.....*.......*.*..........*..*...............**.............*.......*......*........*...*.....*.*.................*......*....*.........*....................*.................*.......................*.......*..*.*.......*.......................*..........*..*......................*...

output:

16202000

result:

ok 1 number(s): "16202000"

Test #18:

score: -100
Wrong Answer
time: 368ms
memory: 77772kb

input:

3000 3000
..................*....*....*...*.*.............*.............*....*.*..*...*...*...*....*.................*...*.*.***...*....*......*.......**...*.......*.*...**...*...*...**.........*..........*.....*.*....*..*.......*.........*..*.....*...............**.......*.....*.*..*.*.*........*.....

output:

21600105

result:

wrong answer 1st numbers differ - expected: '21600132', found: '21600105'