QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#676453#7733. Cool, It’s Yesterday Four Times MoreYuanyin26WA 0ms3832kbC++172.8kb2024-10-25 21:36:032024-10-25 21:36:04

Judging History

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

  • [2024-10-25 21:36:04]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3832kb
  • [2024-10-25 21:36:03]
  • 提交

answer

#include<iostream>
#include<vector>
#include<cstring>
#include<algorithm>
#include<cstdio>
#include<queue>
#include<string.h>
#include <string>
#include<math.h>
#include<set>
#include<unordered_map>
#include<unordered_set>
#include<map>
#include<queue>
#include<stack>
#include<functional>
using namespace std;
#define IOS ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
#define int long long
#define inf 1e18
const int N = 1e5+7;
const int M = 205;
const int mod = 1e9 + 7;
const int di[4][2] = { {1,0}, { -1,0 } ,{ 0,1 },{0,-1} };//下上右左
struct node
{
	int s;
	vector<int>x;
	vector<int>y;
	bool op = 0;
}; 
bool cmp(node a, node b)
{
	return a.s > b.s;
}
void solve()
{
	int n, m;
	cin >> n >> m;
	vector<vector<int>>a(n + 2, vector<int>(m + 2, 0));
	vector<vector<bool>>vi(n + 2, vector<bool>(m + 2, 0));
	vector<node>tu(1);
	int cntqq = 0;
	function<int(int, int)>check = [&](int x, int y)->int
		{
			for (int i = 0; i < 4; i++)
					if (a[x+di[i][0]][y+di[i][1]])return a[x+di[i][0]][y+di[i][1]];
			return 0;
		};
	//连通块
	function<bool(int, int,int,int,int,int)>dfs = [&](int x1, int y1,int x2,int y2,int dx,int dy)->bool
		{
			if (a[x1 + dx][y1 + dy] == 0)
			{
				return true;//没有包含关系
			}
			vi[x2+dx][y2+dy] = 1;
			for (int i = 0; i < 4; i++)
			{
				if (a[x2 + dx + di[i][0]][y2 + dy + di[i][1]] != 0 && vi[x2 + dx + di[i][0]][y2 + dy + di[i][1] ]!= 1)
					if(dfs(x1, y1, x2, y2, dx + di[i][0], dy + di[i][1]))return true;
			}
			vi[x2 + dx][y2 + dy] = 0;
			return false;
		};
	for(int i = 1;i<=n;i++)
	{
		for (int j = 1; j <= m; j++)
		{
			char tp;
			cin >> tp;
			if (tp == '.')
			{
				int tp = check(i, j);
				if (tp)//老连通块
				{
					a[i][j] = tp;
					tu[tp].s++;
					tu[tp].x.push_back(i);
					tu[tp].y.push_back(j);
				}
				else//新连通块
				{
					node tp;
					tp.x.push_back(i), tp.y.push_back(j);
					tp.s = 1;
					tu.push_back(tp);
					a[i][j] = ++cntqq;
				}
			}
		}
	}//连通块
	sort(tu.begin() + 1, tu.end(), cmp);
	function<int(node, node)>work = [&](node a, node b)->int
		{
			for (int i = 0; i < a.x.size(); i++)
			{
				int x1 = a.x[i], y1 = a.y[i];
				
				int x2 = b.x[0], y2 = b.y[0];
				if (!dfs(x1, y1, x2, y2, 0, 0))
				{
					if (a.s == b.s)return 2;//两个都不行
					else return 1;//小的不行
				}
			}
			return 0;//无所谓
		};
	for (int i = 1; i <= cntqq; i++)
	{
		if (tu[i].op)continue;

		for (int j = i+1; j <= cntqq; j++)
		{
			int oo = work(tu[i], tu[j]);
			if (oo == 1)tu[j].op = 1;
			else if (oo == 2)tu[i].op = tu[j].op = 1;
		}
	}
	int sum = 0;
	for (int i = 1; i <= cntqq; i++)
	{
		if (!tu[i].op)sum += tu[i].s;
	}
	cout << sum << endl;
}

signed main()
{
	int T = 1;
	cin >> T;
	while (T--)
	{
		solve();
	}
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3532kb

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: 0ms
memory: 3832kb

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
3
0
0
1
0
1
9
4
4
0
5
5
2
0
1
5
4
5
2
0
0
5
3
3
1
4
1
0
0
5
2
3
7
3
0
6
2
2
2
0
4
5
6
1
3
2
3
5
2
1
0
3
3
3
4
2
2
0
4
3
4
6
4
3
2
5
2
1
2
1
4
0
0
2
5
1
4
6
4
1
6
2
2
3
4
5
2
1
0
1
9
3
4
11
0
3
2
1
0
0
4
3
1
4
3
0
3
0
3
6
2
5
1
3
3
4
0
2
11
2
2
4
0
4
4
6
2
1
2
3
0
5
0
9
0
3
2
6
0
5
3
3
1
...

result:

wrong answer 12th lines differ - expected: '7', found: '1'