QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#705176#7733. Cool, It’s Yesterday Four Times Morelir_nutWA 17ms103644kbC++141.5kb2024-11-02 22:24:592024-11-02 22:24:59

Judging History

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

  • [2024-11-02 22:24:59]
  • 评测
  • 测评结果:WA
  • 用时:17ms
  • 内存:103644kb
  • [2024-11-02 22:24:59]
  • 提交

answer

#include <iostream>
#include <cstdio>
#include <vector>
#include <utility>
#define P pair<int, int>
using namespace std;

const int N = 2e3 + 5, M = 1e3 + 5;
vector<P> record[N][N];
int n, m, cnt[N][N];
bool vis[N][N], axis[N][N];
int dicx[4] = {0, 0, -1, 1};
int dicy[4] = {1, -1, 0, 0};
void dfs(int x, int y, int ox, int oy){
	vis[x][y] = true;
	record[x - ox + 1 + M][y - oy + 1 + M].push_back({ox, oy});
	cnt[ox][oy]++;
	for(int i = 0; i < 4; i++){
		int sx = x + dicx[i], sy = y + dicy[i];
		if(sx <=0 || sy <= 0 || sx > n || sy > m || vis[sx][sy] || axis[sx][sy])
			continue;
		dfs(sx, sy, ox, oy);
	}
}
void solution(){
	cin >> n >> m;
	for(int i = 1; i <= n + 1; i++){
		for(int j = 1; j <= m + 1; j++)
			cnt[i][j] = axis[i][j] = vis[i][j] = false;
	}
	for(int i = M - n; i<= M  + n + 1; i++){
		for(int j = M - m; j <= M + m + 1; j++)
			record[i][j].clear();
	}
	for(int i = 1; i <= n; i++){
		string str; cin >> str;
		for(int j = 0; j < m; j++) axis[i][j + 1] = (str[j] == 'O');
	}
	for(int i = 1; i <= n; i++){
		for(int j = 1; j <= m; j++){
			if(vis[i][j] || axis[i][j]) continue;
			dfs(i, j, i, j);
		}
	}
	int ans = 0;
	for(int i = M - n; i<= M  + n + 1; i++){
		for(int j = M - m; j <= M + m + 1; j++)
			ans += (record[i][j].size() == 1 ? cnt[record[i][j][0].first][record[i][j][0].second] : 0);
	}
	printf("%d", ans);
}

int main(){
	int t; cin >> t;
	while(t--){
		solution();
		if(t) cout << "\n";
	}
}
/*
4
2 5
.OO..
O..O.
1 3
O.O
1 3
.O.
2 3
OOO
OOO
*/

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 17ms
memory: 103428kb

input:

4
2 5
.OO..
O..O.
1 3
O.O
1 3
.O.
2 3
OOO
OOO

output:

3
1
0
0

result:

ok 4 lines

Test #2:

score: -100
Wrong Answer
time: 12ms
memory: 103644kb

input:

200
2 4
OOO.
OO..
2 3
OOO
.O.
3 3
O.O
OOO
OO.
4 1
.
.
O
O
1 2
.O
1 1
.
2 5
.OO..
.O.O.
2 1
O
O
1 1
O
1 3
.OO
5 1
O
O
.
O
.
5 2
O.
..
O.
.O
..
5 3
...
...
.OO
..O
OOO
3 5
..O.O
.O.O.
.OO.O
5 2
.O
OO
O.
O.
..
2 1
O
O
3 5
.O.OO
O...O
..OO.
1 5
.....
5 1
O
.
O
.
.
5 3
OOO
OO.
.OO
OO.
O.O
2 1
O
.
5 2
O.
...

output:

9
0
0
4
1
1
8
0
0
1
0
11
81
12
12
0
30
25
2
0
1
30
8
5
4
0
0
20
6
9
1
16
1
0
11
25
4
9
44
9
0
36
2
2
2
0
16
36
36
3
8
2
8
8
2
1
0
6
9
12
16
2
2
0
35
30
16
40
25
6
4
20
2
1
4
1
16
0
0
4
25
1
8
36
36
1
30
4
2
5
12
25
4
1
0
1
81
6
12
121
0
6
4
1
0
0
16
9
1
12
9
50
6
0
6
6
4
8
1
9
6
16
0
2
121
4
2
12
0
...

result:

wrong answer 1st lines differ - expected: '3', found: '9'