QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#331474#833. Cells Blockingsinsop90AC ✓374ms312456kbC++142.5kb2024-02-18 11:04:322024-02-18 11:04:33

Judging History

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

  • [2024-02-18 11:04:33]
  • 评测
  • 测评结果:AC
  • 用时:374ms
  • 内存:312456kb
  • [2024-02-18 11:04:32]
  • 提交

answer

#include <bits/stdc++.h>
#define int long long
using namespace std;
const int maxn = 3005;
char s[maxn][maxn];
int vis1[maxn][maxn], vis2[maxn][maxn], vis3[maxn][maxn], n, m, cnt, rot[maxn][maxn], ans;
bool visS[maxn][maxn], visT[maxn][maxn];
vector<pair<int, int>> vec;
bool check(int x, int y) {
	return (x >= 1 && x <= n && y >= 1 && y <= m && s[x][y] == '.');
}
void dfs1(int x, int y) {
	visS[x][y] = 1;
	if(x == n && y == m) return;
	if(check(x + 1, y) && !vis1[x + 1][y]) {
		vis1[x + 1][y] = 1;
		dfs1(x + 1, y); 
	}
	if(check(x, y + 1) && !vis1[x][y + 1]) {
		vis1[x][y + 1] = 2;
		dfs1(x, y + 1);
	}
}
void dfs2(int x, int y) {
	visT[x][y] = 1;
	if(x == 1 && y == 1) return;
	if(check(x, y - 1) && !vis2[x][y - 1]) {
		vis2[x][y - 1] = 2;
		dfs2(x, y - 1);
	}
	if(check(x - 1, y) && !vis2[x - 1][y]) {
		vis2[x - 1][y] = 1;
		dfs2(x - 1, y);
	}
}
void dfs3(int x, int y) {
	if(x == n && y == m) return;
	if(check(x, y + 1) && !vis3[x][y + 1]) {
		vis3[x][y + 1] = 2;
		dfs3(x, y + 1);
	}
	if(check(x + 1, y) && !vis3[x + 1][y]) {
		vis3[x + 1][y] = 1;
		dfs3(x + 1, y); 
	}
	
}
signed main() {
	ios::sync_with_stdio(0);
	cin.tie(0), cout.tie(0);
	cin >> n >> m;
	for(int i = 1;i <= n;i++) {
		cin >> s[i] + 1;
		for(int j = 1;j <= m;j++) cnt += (s[i][j] == '.');
	}
	if(n == 1 && m == 1) {
		cout << 0;
		return 0;
	}
	dfs1(1, 1);
	if(!visS[n][m]) {
		cout << cnt * (cnt - 1) / 2 << '\n';
		return 0;
	}
	dfs2(n, m);
	dfs3(1, 1);
	int X = n, Y = m, res = 1;
	while(!(X == 1 && Y == 1)) {
		rot[X][Y] = 1;
		if(vis3[X][Y] == 1) X --;
		else Y --;
	}
	X = n, Y = m;
	while(!(X == 1 && Y == 1)) {
		vec.push_back(make_pair(X, Y));
		res += rot[X][Y];
		if(vis1[X][Y] == 1) X --;
		else Y --;
	}
	vec.push_back(make_pair(1, 1));
	ans = res * (cnt - res) + res * (res - 1) / 2;
	for(pair<int, int> t : vec) {
		int X = t.first, Y = t.second, resN = 0;
		X --, Y ++;
		while(X >= 1 && Y <= m) {
			if(visS[X][Y] && visT[X][Y]) break;
			X --, Y ++;
		}
		if(!(X >= 1 && Y <= m)) continue;
		int XX = X, YY = Y;
		while(!(XX == 1 && YY == 1)) {
			resN += rot[XX][YY];
			if(vis1[XX][YY] == 1) XX --;
			else YY --;
		}
		XX = X, YY = Y;
		if(vis2[XX][YY] == 1) XX ++;
		else YY ++;
		while(!(XX == n && YY == m)) {
			resN += rot[XX][YY];
			if(vis2[XX][YY] == 1) XX ++;
			else YY ++;
		}
//		cout << X << " " << Y << " " << resN << " " << res << '\n';
		ans += resN + 2 - res;
	}
	cout << ans << '\n';
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 2ms
memory: 11840kb

input:

3 3
...
...
...

output:

17

result:

ok 1 number(s): "17"

Test #2:

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

input:

3 3
.**
.*.
...

output:

15

result:

ok 1 number(s): "15"

Test #3:

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

input:

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

output:

6

result:

ok 1 number(s): "6"

Test #4:

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

input:

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

output:

66

result:

ok 1 number(s): "66"

Test #5:

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

input:

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

output:

1378

result:

ok 1 number(s): "1378"

Test #6:

score: 0
Accepted
time: 346ms
memory: 312380kb

input:

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

output:

17999999

result:

ok 1 number(s): "17999999"

Test #7:

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

input:

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

output:

17981671

result:

ok 1 number(s): "17981671"

Test #8:

score: 0
Accepted
time: 321ms
memory: 312280kb

input:

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

output:

17963615

result:

ok 1 number(s): "17963615"

Test #9:

score: 0
Accepted
time: 345ms
memory: 312256kb

input:

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

output:

17945165

result:

ok 1 number(s): "17945165"

Test #10:

score: 0
Accepted
time: 333ms
memory: 312296kb

input:

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

output:

17928211

result:

ok 1 number(s): "17928211"

Test #11:

score: 0
Accepted
time: 309ms
memory: 312216kb

input:

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

output:

17911522

result:

ok 1 number(s): "17911522"

Test #12:

score: 0
Accepted
time: 334ms
memory: 312220kb

input:

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

output:

17892283

result:

ok 1 number(s): "17892283"

Test #13:

score: 0
Accepted
time: 342ms
memory: 312204kb

input:

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

output:

17873837

result:

ok 1 number(s): "17873837"

Test #14:

score: 0
Accepted
time: 301ms
memory: 311684kb

input:

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

output:

17856701

result:

ok 1 number(s): "17856701"

Test #15:

score: 0
Accepted
time: 318ms
memory: 312068kb

input:

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

output:

17837857

result:

ok 1 number(s): "17837857"

Test #16:

score: 0
Accepted
time: 319ms
memory: 311968kb

input:

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

output:

17819731

result:

ok 1 number(s): "17819731"

Test #17:

score: 0
Accepted
time: 339ms
memory: 303280kb

input:

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

output:

16202000

result:

ok 1 number(s): "16202000"

Test #18:

score: 0
Accepted
time: 275ms
memory: 275244kb

input:

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

output:

21600132

result:

ok 1 number(s): "21600132"

Test #19:

score: 0
Accepted
time: 7ms
memory: 17044kb

input:

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

output:

19862779430431

result:

ok 1 number(s): "19862779430431"

Test #20:

score: 0
Accepted
time: 11ms
memory: 17004kb

input:

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

output:

14601805246666

result:

ok 1 number(s): "14601805246666"

Test #21:

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

input:

1 1
*

output:

0

result:

ok 1 number(s): "0"

Test #22:

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

input:

1 1
.

output:

0

result:

ok 1 number(s): "0"

Test #23:

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

input:

2 2
..
..

output:

6

result:

ok 1 number(s): "6"

Test #24:

score: 0
Accepted
time: 6ms
memory: 16928kb

input:

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

output:

10151159625145

result:

ok 1 number(s): "10151159625145"

Test #25:

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

input:

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

output:

39716328

result:

ok 1 number(s): "39716328"

Test #26:

score: 0
Accepted
time: 360ms
memory: 312412kb

input:

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

output:

35988321

result:

ok 1 number(s): "35988321"

Test #27:

score: 0
Accepted
time: 374ms
memory: 312448kb

input:

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

output:

35981866

result:

ok 1 number(s): "35981866"

Test #28:

score: 0
Accepted
time: 325ms
memory: 312412kb

input:

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

output:

17988153

result:

ok 1 number(s): "17988153"

Test #29:

score: 0
Accepted
time: 311ms
memory: 312332kb

input:

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

output:

35969654

result:

ok 1 number(s): "35969654"

Test #30:

score: 0
Accepted
time: 335ms
memory: 312268kb

input:

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

output:

17982216

result:

ok 1 number(s): "17982216"

Test #31:

score: 0
Accepted
time: 359ms
memory: 312372kb

input:

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

output:

71916090

result:

ok 1 number(s): "71916090"

Test #32:

score: 0
Accepted
time: 350ms
memory: 312392kb

input:

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

output:

71903186

result:

ok 1 number(s): "71903186"

Test #33:

score: 0
Accepted
time: 343ms
memory: 312280kb

input:

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

output:

17973051

result:

ok 1 number(s): "17973051"

Test #34:

score: 0
Accepted
time: 321ms
memory: 312112kb

input:

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

output:

35630636

result:

ok 1 number(s): "35630636"

Test #35:

score: 0
Accepted
time: 298ms
memory: 311960kb

input:

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

output:

44529907

result:

ok 1 number(s): "44529907"

Test #36:

score: 0
Accepted
time: 313ms
memory: 312196kb

input:

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

output:

53426863

result:

ok 1 number(s): "53426863"

Test #37:

score: 0
Accepted
time: 325ms
memory: 312184kb

input:

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

output:

53419301

result:

ok 1 number(s): "53419301"

Test #38:

score: 0
Accepted
time: 292ms
memory: 312076kb

input:

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

output:

26705269

result:

ok 1 number(s): "26705269"

Test #39:

score: 0
Accepted
time: 294ms
memory: 311928kb

input:

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

output:

17799069

result:

ok 1 number(s): "17799069"

Test #40:

score: 0
Accepted
time: 313ms
memory: 312040kb

input:

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

output:

53393629

result:

ok 1 number(s): "53393629"

Test #41:

score: 0
Accepted
time: 348ms
memory: 312456kb

input:

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

output:

98852811

result:

ok 1 number(s): "98852811"

Test #42:

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

input:

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

output:

4498500

result:

ok 1 number(s): "4498500"

Test #43:

score: 0
Accepted
time: 321ms
memory: 312288kb

input:

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

output:

88979547

result:

ok 1 number(s): "88979547"

Test #44:

score: 0
Accepted
time: 341ms
memory: 312436kb

input:

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

output:

35964327

result:

ok 1 number(s): "35964327"