QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#328085#833. Cells BlockingKazdaleAC ✓711ms318600kbC++142.5kb2024-02-15 16:58:082024-02-15 16:58:12

Judging History

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

  • [2024-02-15 16:58:12]
  • 评测
  • 测评结果:AC
  • 用时:711ms
  • 内存:318600kb
  • [2024-02-15 16:58:08]
  • 提交

answer

#include <iostream>
#include <vector>
#define int long long
using namespace std;
constexpr int MAXN(3007);
vector <int> lmx, lmy;
int xx[] = {0, 1};
int yy[] = {1, 0};
char ch[MAXN][MAXN];
int a[MAXN][MAXN], b[MAXN][MAXN], c[MAXN][MAXN], d[MAXN][MAXN];
int qx[MAXN * MAXN], qy[MAXN * MAXN], head, tail;
int n, m, ept, jiao, njiao;
long long ans;
inline void read(int &temp) { cin >> temp; }
inline void bfs1() {
	head = 1, tail = 0;
	qx[++tail] = 1, qy[tail] = 1, a[1][1] = 1;
	while (head <= tail) {
		int nx = qx[head], ny = qy[head++];
		for (int i(0); i < 2; ++i) {
			int tx = nx + xx[i], ty = ny + yy[i];
			if (tx > n || ty > m || ch[tx][ty] == '*')  continue;
			if (!a[tx][ty])  qx[++tail] = tx, qy[tail] = ty;
			a[tx][ty] = 1;
		}
	}
}
inline void bfs2() {
	head = 1, tail = 0;
	qx[++tail] = n, qy[tail] = m, b[n][m] = 1;
	while (head <= tail) {
		int nx = qx[head], ny = qy[head++];
		for (int i(0); i < 2; ++i) {
			int tx = nx - xx[i], ty = ny - yy[i];
			if (tx < 1 || ty < 1 || ch[tx][ty] == '*')  continue;
			if (!b[tx][ty])  qx[++tail] = tx, qy[tail] = ty;
			b[tx][ty] = 1;
		}
	}
}
void leftmost(int x, int y, int dt) {
	if (dt)  ++c[x][y], lmx.emplace_back(x), lmy.emplace_back(y);
	if (d[x][y] && !c[x][y])  ++njiao;
	if (x == n && y == m)  return ;
	if (b[x + 1][y])  return leftmost(x + 1, y, dt);
	return leftmost(x, y + 1, dt);
}
void rightmost(int x, int y) {
	++d[x][y];
	if (c[x][y])  ++jiao;
	if (x == n && y == m)  return ;
	if (b[x][y + 1])  return rightmost(x, y + 1);
	return rightmost(x + 1, y);
}
void nlm(int x, int y) {
	if (d[x][y] && !c[x][y])  ++njiao;
	if (x == 1 && y == 1)  return ;
	if (a[x][y - 1])  return nlm(x, y - 1);
	return nlm(x - 1, y);
}
signed main() {
	ios::sync_with_stdio(false), cin.tie(nullptr), cout.tie(nullptr);
	read(n), read(m);
	for (int i(1); i <= n; ++i)
		for (int j(1); j <= m; ++j)  cin >> ch[i][j];
	for (int i(1); i <= n; ++i)
		for (int j(1); j <= m; ++j)  if (ch[i][j] == '.')  ++ept;
	bfs1(), bfs2();
	if (!a[n][m])  return cout << max(ept * (ept - 1) / 2, 0ll) << endl, 0;
	leftmost(1, 1, 1), rightmost(1, 1);
	ans = max(jiao * (ept - jiao) + jiao * (jiao - 1) / 2, 0ll);
	for (int i(0); i < (int)lmx.size(); ++i) {
		int x = lmx[i], y = lmy[i];
		if (d[x][y])  continue;
		njiao = 0;
		for (int j(1); x - j >= 1 && y + j <= m; ++j) {
			if (a[x - j][y + j] && b[x - j][y + j]) {
				leftmost(x - j, y + j, 0), nlm(x - j, y + j);
				ans += njiao - d[x - j][y + j];
				break;
			}
		}
	}
	cout << ans << endl;
	return 0;
}

详细

Test #1:

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

input:

3 3
...
...
...

output:

17

result:

ok 1 number(s): "17"

Test #2:

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

input:

3 3
.**
.*.
...

output:

15

result:

ok 1 number(s): "15"

Test #3:

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

input:

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

output:

6

result:

ok 1 number(s): "6"

Test #4:

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

input:

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

output:

66

result:

ok 1 number(s): "66"

Test #5:

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

input:

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

output:

1378

result:

ok 1 number(s): "1378"

Test #6:

score: 0
Accepted
time: 678ms
memory: 318600kb

input:

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

output:

17999999

result:

ok 1 number(s): "17999999"

Test #7:

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

input:

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

output:

17981671

result:

ok 1 number(s): "17981671"

Test #8:

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

input:

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

output:

17963615

result:

ok 1 number(s): "17963615"

Test #9:

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

input:

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

output:

17945165

result:

ok 1 number(s): "17945165"

Test #10:

score: 0
Accepted
time: 678ms
memory: 317268kb

input:

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

output:

17928211

result:

ok 1 number(s): "17928211"

Test #11:

score: 0
Accepted
time: 711ms
memory: 316792kb

input:

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

output:

17911522

result:

ok 1 number(s): "17911522"

Test #12:

score: 0
Accepted
time: 699ms
memory: 316712kb

input:

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

output:

17892283

result:

ok 1 number(s): "17892283"

Test #13:

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

input:

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

output:

17873837

result:

ok 1 number(s): "17873837"

Test #14:

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

input:

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

output:

17856701

result:

ok 1 number(s): "17856701"

Test #15:

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

input:

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

output:

17837857

result:

ok 1 number(s): "17837857"

Test #16:

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

input:

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

output:

17819731

result:

ok 1 number(s): "17819731"

Test #17:

score: 0
Accepted
time: 633ms
memory: 281384kb

input:

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

output:

16202000

result:

ok 1 number(s): "16202000"

Test #18:

score: 0
Accepted
time: 559ms
memory: 219084kb

input:

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

output:

21600132

result:

ok 1 number(s): "21600132"

Test #19:

score: 0
Accepted
time: 68ms
memory: 14836kb

input:

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

output:

19862779430431

result:

ok 1 number(s): "19862779430431"

Test #20:

score: 0
Accepted
time: 60ms
memory: 12512kb

input:

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

output:

14601805246666

result:

ok 1 number(s): "14601805246666"

Test #21:

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

input:

1 1
*

output:

0

result:

ok 1 number(s): "0"

Test #22:

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

input:

1 1
.

output:

0

result:

ok 1 number(s): "0"

Test #23:

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

input:

2 2
..
..

output:

6

result:

ok 1 number(s): "6"

Test #24:

score: 0
Accepted
time: 60ms
memory: 12460kb

input:

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

output:

10151159625145

result:

ok 1 number(s): "10151159625145"

Test #25:

score: 0
Accepted
time: 64ms
memory: 12492kb

input:

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

output:

39716328

result:

ok 1 number(s): "39716328"

Test #26:

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

input:

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

output:

35988321

result:

ok 1 number(s): "35988321"

Test #27:

score: 0
Accepted
time: 664ms
memory: 318440kb

input:

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

output:

35981866

result:

ok 1 number(s): "35981866"

Test #28:

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

input:

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

output:

17988153

result:

ok 1 number(s): "17988153"

Test #29:

score: 0
Accepted
time: 663ms
memory: 318344kb

input:

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

output:

35969654

result:

ok 1 number(s): "35969654"

Test #30:

score: 0
Accepted
time: 661ms
memory: 318324kb

input:

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

output:

17982216

result:

ok 1 number(s): "17982216"

Test #31:

score: 0
Accepted
time: 678ms
memory: 318284kb

input:

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

output:

71916090

result:

ok 1 number(s): "71916090"

Test #32:

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

input:

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

output:

71903186

result:

ok 1 number(s): "71903186"

Test #33:

score: 0
Accepted
time: 656ms
memory: 318216kb

input:

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

output:

17973051

result:

ok 1 number(s): "17973051"

Test #34:

score: 0
Accepted
time: 673ms
memory: 316736kb

input:

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

output:

35630636

result:

ok 1 number(s): "35630636"

Test #35:

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

input:

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

output:

44529907

result:

ok 1 number(s): "44529907"

Test #36:

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

input:

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

output:

53426863

result:

ok 1 number(s): "53426863"

Test #37:

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

input:

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

output:

53419301

result:

ok 1 number(s): "53419301"

Test #38:

score: 0
Accepted
time: 641ms
memory: 316716kb

input:

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

output:

26705269

result:

ok 1 number(s): "26705269"

Test #39:

score: 0
Accepted
time: 660ms
memory: 316512kb

input:

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

output:

17799069

result:

ok 1 number(s): "17799069"

Test #40:

score: 0
Accepted
time: 658ms
memory: 316436kb

input:

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

output:

53393629

result:

ok 1 number(s): "53393629"

Test #41:

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

input:

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

output:

98852811

result:

ok 1 number(s): "98852811"

Test #42:

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

input:

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

output:

4498500

result:

ok 1 number(s): "4498500"

Test #43:

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

input:

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

output:

88979547

result:

ok 1 number(s): "88979547"

Test #44:

score: 0
Accepted
time: 711ms
memory: 318436kb

input:

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

output:

35964327

result:

ok 1 number(s): "35964327"