QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#327949#833. Cells BlockingJryno1WA 696ms365020kbC++142.2kb2024-02-15 15:41:382024-02-15 15:41:38

Judging History

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

  • [2024-02-15 15:41:38]
  • 评测
  • 测评结果:WA
  • 用时:696ms
  • 内存:365020kb
  • [2024-02-15 15:41:38]
  • 提交

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<<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,ans=0;
	for(int i=0;i<U.size();i++){
		if(U[i]==V[i])cc++,ans+=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+=(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: 1ms
memory: 3772kb

input:

3 3
...
...
...

output:

17

result:

ok 1 number(s): "17"

Test #2:

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

input:

3 3
.**
.*.
...

output:

15

result:

ok 1 number(s): "15"

Test #3:

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

input:

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

output:

6

result:

ok 1 number(s): "6"

Test #4:

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

input:

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

output:

66

result:

ok 1 number(s): "66"

Test #5:

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

input:

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

output:

1378

result:

ok 1 number(s): "1378"

Test #6:

score: 0
Accepted
time: 675ms
memory: 365020kb

input:

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

output:

17999999

result:

ok 1 number(s): "17999999"

Test #7:

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

input:

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

output:

17981671

result:

ok 1 number(s): "17981671"

Test #8:

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

input:

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

output:

17963615

result:

ok 1 number(s): "17963615"

Test #9:

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

input:

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

output:

17945165

result:

ok 1 number(s): "17945165"

Test #10:

score: 0
Accepted
time: 680ms
memory: 364740kb

input:

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

output:

17928211

result:

ok 1 number(s): "17928211"

Test #11:

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

input:

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

output:

17911522

result:

ok 1 number(s): "17911522"

Test #12:

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

input:

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

output:

17892283

result:

ok 1 number(s): "17892283"

Test #13:

score: 0
Accepted
time: 691ms
memory: 364712kb

input:

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

output:

17873837

result:

ok 1 number(s): "17873837"

Test #14:

score: 0
Accepted
time: 669ms
memory: 364016kb

input:

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

output:

17856701

result:

ok 1 number(s): "17856701"

Test #15:

score: 0
Accepted
time: 692ms
memory: 364272kb

input:

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

output:

17837857

result:

ok 1 number(s): "17837857"

Test #16:

score: 0
Accepted
time: 681ms
memory: 364136kb

input:

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

output:

17819731

result:

ok 1 number(s): "17819731"

Test #17:

score: 0
Accepted
time: 672ms
memory: 352928kb

input:

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

output:

16202000

result:

ok 1 number(s): "16202000"

Test #18:

score: 0
Accepted
time: 662ms
memory: 313816kb

input:

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

output:

21600132

result:

ok 1 number(s): "21600132"

Test #19:

score: -100
Wrong Answer
time: 119ms
memory: 87480kb

input:

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

output:

703170079

result:

wrong answer 1st numbers differ - expected: '19862779430431', found: '703170079'