QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#705192#7733. Cool, It’s Yesterday Four Times Morelir_nutWA 11ms100004kbC++141.6kb2024-11-02 22:29:322024-11-02 22:29:33

Judging History

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

  • [2024-11-02 22:29:33]
  • 评测
  • 测评结果:WA
  • 用时:11ms
  • 内存:100004kb
  • [2024-11-02 22:29:32]
  • 提交

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++){
			if(record[i][j].size() == 1){
				ans += cnt[record[i][j][0].first][record[i][j][0].second];
				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: 11ms
memory: 98796kb

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: 11ms
memory: 100004kb

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:

3
0
0
2
1
1
5
0
0
1
0
7
9
4
4
0
6
5
2
0
1
6
4
5
2
0
0
5
3
3
1
4
1
0
7
5
2
3
9
3
0
6
2
2
2
0
4
6
6
3
5
2
5
5
2
1
0
3
3
4
4
2
2
0
7
6
4
8
5
3
2
5
2
1
2
1
4
0
0
2
5
1
4
6
9
1
6
2
2
5
4
5
2
1
0
1
9
3
4
11
0
3
2
1
0
0
4
3
1
4
3
10
3
0
3
6
2
5
1
3
3
4
0
2
11
2
2
4
0
4
4
3
2
1
2
3
0
5
0
16
4
3
2
6
0
8
3
3
...

result:

wrong answer 7th lines differ - expected: '3', found: '5'