QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#327955#833. Cells BlockingJryno1AC ✓831ms365248kbC++142.2kb2024-02-15 15:43:312024-02-15 15:43:32

Judging History

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

  • [2024-02-15 15:43:32]
  • 评测
  • 测评结果:AC
  • 用时:831ms
  • 内存:365248kb
  • [2024-02-15 15:43:31]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
const int maxn=3005;
#define pii pair<int,int> 
#define fi first
#define se second
#define mkp(x,y) make_pair(x,y)
int cs[maxn][maxn],ct[maxn][maxn];
pii fu[maxn][maxn],fv[maxn][maxn],tu[maxn][maxn],tv[maxn][maxn];
int n,m,cnt;
char mp[maxn][maxn];
vector<pii>buc[maxn+maxn];
signed main(){
	cin.tie(0),cout.tie(0),ios::sync_with_stdio(false);
	cin>>n>>m;
	for(int i=1;i<=n;i++)for(int j=1;j<=m;j++)cin>>mp[i][j],cnt+=(mp[i][j]=='.');
	//presets
	if(mp[1][1]!='*')cs[1][1]=1;
	if(mp[n][m]!='*')ct[n][m]=1;
	for(int i=1;i<=n;i++){
		for(int j=1;j<=m;j++){
			if((i==1&&j==1)||mp[i][j]=='*')continue;
			cs[i][j]=cs[i-1][j]|cs[i][j-1];
			if(!cs[i][j])continue;
			if(cs[i][j-1])fu[i][j]=mkp(i,j-1);
			else fu[i][j]=mkp(i-1,j);
			if(cs[i-1][j])fv[i][j]=mkp(i-1,j);
			else fv[i][j]=mkp(i,j-1);
		}
	}
	for(int i=n;i>=1;i--){
		for(int j=m;j>=1;j--){
			if((i==n&&j==m)||mp[i][j]=='*')continue;
			ct[i][j]=ct[i+1][j]|ct[i][j+1];
			if(!ct[i][j])continue;
			if(ct[i+1][j])tu[i][j]=mkp(i+1,j);
			else tu[i][j]=mkp(i,j+1);
			if(ct[i][j+1])tv[i][j]=mkp(i,j+1);
			else tv[i][j]=mkp(i+1,j);
		}
	} 
	if(!ct[1][1]||cnt<2){
		cout<<1ll*cnt*(cnt-1)/2;
		return 0;
	}
	for(int j=1;j<=m;j++){
		for(int i=1;i<=n;i++){
			if(!cs[i][j]||!ct[i][j]||buc[i+j].size()==2)continue;
			buc[i+j].push_back(mkp(i,j));
		}
	}
	//U,V
	vector<pii>U,V,S;
	pii now=mkp(1,1);
	while(1){
		U.push_back(now);
		if(now==mkp(n,m))break;
		now=tu[now.fi][now.se];
	}
	now=mkp(1,1);
	while(1){
		V.push_back(now);
		if(now==mkp(n,m))break;
		now=tv[now.fi][now.se];
	}
	int cc=0;
	long long ans=0;
	for(int i=0;i<U.size();i++){
		if(U[i]==V[i])cc++,ans+=1ll*(cnt-cc);
		else S.push_back(U[i]);
	}
	if(cc==U.size()){
		cout<<ans;
		return 0;
	}
	for(int i=0;i<S.size();i++){
		vector<pii>U_;
		now=buc[S[i].fi+S[i].se][1];
		while(1){
			U_.push_back(now);
			if(now==mkp(1,1))break;
			now=fu[now.fi][now.se];
		}
		reverse(U_.begin(),U_.end());
		now=buc[S[i].fi+S[i].se][1];
		now=tu[now.fi][now.se];
		while(1){
			U_.push_back(now);
			if(now==mkp(n,m))break;
			now=tu[now.fi][now.se];
		}
		for(int j=0;j<U_.size();j++)ans+=1ll*(U_[j]==V[j]&&U[j]!=U_[j]);
	}
	cout<<ans;
	return 0;
} 

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3828kb

input:

3 3
...
...
...

output:

17

result:

ok 1 number(s): "17"

Test #2:

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

input:

3 3
.**
.*.
...

output:

15

result:

ok 1 number(s): "15"

Test #3:

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

input:

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

output:

6

result:

ok 1 number(s): "6"

Test #4:

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

input:

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

output:

66

result:

ok 1 number(s): "66"

Test #5:

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

input:

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

output:

1378

result:

ok 1 number(s): "1378"

Test #6:

score: 0
Accepted
time: 683ms
memory: 364976kb

input:

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

output:

17999999

result:

ok 1 number(s): "17999999"

Test #7:

score: 0
Accepted
time: 674ms
memory: 364868kb

input:

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

output:

17981671

result:

ok 1 number(s): "17981671"

Test #8:

score: 0
Accepted
time: 684ms
memory: 364836kb

input:

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

output:

17963615

result:

ok 1 number(s): "17963615"

Test #9:

score: 0
Accepted
time: 683ms
memory: 364604kb

input:

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

output:

17945165

result:

ok 1 number(s): "17945165"

Test #10:

score: 0
Accepted
time: 693ms
memory: 364896kb

input:

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

output:

17928211

result:

ok 1 number(s): "17928211"

Test #11:

score: 0
Accepted
time: 682ms
memory: 364680kb

input:

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

output:

17911522

result:

ok 1 number(s): "17911522"

Test #12:

score: 0
Accepted
time: 667ms
memory: 364400kb

input:

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

output:

17892283

result:

ok 1 number(s): "17892283"

Test #13:

score: 0
Accepted
time: 703ms
memory: 364500kb

input:

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

output:

17873837

result:

ok 1 number(s): "17873837"

Test #14:

score: 0
Accepted
time: 697ms
memory: 364032kb

input:

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

output:

17856701

result:

ok 1 number(s): "17856701"

Test #15:

score: 0
Accepted
time: 831ms
memory: 364340kb

input:

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

output:

17837857

result:

ok 1 number(s): "17837857"

Test #16:

score: 0
Accepted
time: 665ms
memory: 364144kb

input:

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

output:

17819731

result:

ok 1 number(s): "17819731"

Test #17:

score: 0
Accepted
time: 670ms
memory: 353008kb

input:

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

output:

16202000

result:

ok 1 number(s): "16202000"

Test #18:

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

input:

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

output:

21600132

result:

ok 1 number(s): "21600132"

Test #19:

score: 0
Accepted
time: 124ms
memory: 87408kb

input:

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

output:

19862779430431

result:

ok 1 number(s): "19862779430431"

Test #20:

score: 0
Accepted
time: 134ms
memory: 83064kb

input:

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

output:

14601805246666

result:

ok 1 number(s): "14601805246666"

Test #21:

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

input:

1 1
*

output:

0

result:

ok 1 number(s): "0"

Test #22:

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

input:

1 1
.

output:

0

result:

ok 1 number(s): "0"

Test #23:

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

input:

2 2
..
..

output:

6

result:

ok 1 number(s): "6"

Test #24:

score: 0
Accepted
time: 152ms
memory: 83192kb

input:

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

output:

10151159625145

result:

ok 1 number(s): "10151159625145"

Test #25:

score: 0
Accepted
time: 83ms
memory: 57328kb

input:

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

output:

39716328

result:

ok 1 number(s): "39716328"

Test #26:

score: 0
Accepted
time: 666ms
memory: 365168kb

input:

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

output:

35988321

result:

ok 1 number(s): "35988321"

Test #27:

score: 0
Accepted
time: 696ms
memory: 364960kb

input:

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

output:

35981866

result:

ok 1 number(s): "35981866"

Test #28:

score: 0
Accepted
time: 676ms
memory: 364952kb

input:

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

output:

17988153

result:

ok 1 number(s): "17988153"

Test #29:

score: 0
Accepted
time: 704ms
memory: 365080kb

input:

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

output:

35969654

result:

ok 1 number(s): "35969654"

Test #30:

score: 0
Accepted
time: 723ms
memory: 364728kb

input:

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

output:

17982216

result:

ok 1 number(s): "17982216"

Test #31:

score: 0
Accepted
time: 689ms
memory: 364848kb

input:

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

output:

71916090

result:

ok 1 number(s): "71916090"

Test #32:

score: 0
Accepted
time: 728ms
memory: 364840kb

input:

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

output:

71903186

result:

ok 1 number(s): "71903186"

Test #33:

score: 0
Accepted
time: 667ms
memory: 364888kb

input:

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

output:

17973051

result:

ok 1 number(s): "17973051"

Test #34:

score: 0
Accepted
time: 671ms
memory: 364332kb

input:

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

output:

35630636

result:

ok 1 number(s): "35630636"

Test #35:

score: 0
Accepted
time: 695ms
memory: 364360kb

input:

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

output:

44529907

result:

ok 1 number(s): "44529907"

Test #36:

score: 0
Accepted
time: 717ms
memory: 364636kb

input:

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

output:

53426863

result:

ok 1 number(s): "53426863"

Test #37:

score: 0
Accepted
time: 679ms
memory: 364476kb

input:

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

output:

53419301

result:

ok 1 number(s): "53419301"

Test #38:

score: 0
Accepted
time: 667ms
memory: 364624kb

input:

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

output:

26705269

result:

ok 1 number(s): "26705269"

Test #39:

score: 0
Accepted
time: 676ms
memory: 364468kb

input:

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

output:

17799069

result:

ok 1 number(s): "17799069"

Test #40:

score: 0
Accepted
time: 683ms
memory: 364184kb

input:

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

output:

53393629

result:

ok 1 number(s): "53393629"

Test #41:

score: 0
Accepted
time: 682ms
memory: 365248kb

input:

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

output:

98852811

result:

ok 1 number(s): "98852811"

Test #42:

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

input:

1 3000
........................................................................................................................................................................................................................................................................................................

output:

4498500

result:

ok 1 number(s): "4498500"

Test #43:

score: 0
Accepted
time: 688ms
memory: 364676kb

input:

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

output:

88979547

result:

ok 1 number(s): "88979547"

Test #44:

score: 0
Accepted
time: 702ms
memory: 364964kb

input:

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

output:

35964327

result:

ok 1 number(s): "35964327"