2022年蓝桥杯B组c++省赛试题H:扫雷

目录

1、题目描述

2、代码:


前言:菜狗一枚,暴力解的,就想记录一下自己打比赛时怎么写的。

1、题目描述

2022年蓝桥杯B组c++省赛试题H:扫雷_第1张图片

 2022年蓝桥杯B组c++省赛试题H:扫雷_第2张图片

2、代码:

#include
#include

using namespace std;
typedef long long LL;

struct Node{
	LL x;
	LL y;
	LL r;
};

int ans=0;

void count();
int N,M;
const int nn =5*1e4+1;
Node zlei[nn];
Node plei[nn];

int main()
{
	cin>>N>>M;
	//Node zlei[N+1];
	//Node plei[M+1];
	for(int i=1;i<=N;i++)
	{
		LL xx,yy,rr;
		cin>>xx>>yy>>rr;
		zlei[i].x = xx;zlei[i].y = yy;zlei[i].r = rr;	
	}
	for(int i=1;i<=M;i++)
	{
		LL xx,yy,rr;
		cin>>xx>>yy>>rr;
		plei[i].x = xx;plei[i].y = yy;plei[i].r = rr;
	}
	count();
	cout<

总结:这是第二次参赛,估计也是大学最后一次参加蓝桥杯了,写了六道题,很多还是用暴力解,刷的题还是太少,这一年几乎没什么大的进步,菜就得挨打,真是去送钱了,人菜进不了决赛只能怪自己了,继续加油吧!骚年。。。。

你可能感兴趣的:(蓝桥杯,c语言,算法)