【DFS】洛谷P6566 [NOI Online #3 入门组]观星(民间数据)

这篇博客介绍了如何解决洛谷P6566的观星问题,采用深度优先搜索(DFS)策略,通过暴力求解每个星座,并利用桶排序优化处理星系。由于数据规模较小,此方法可行。同时,博主还分享了对《明日方舟》中角色星极的个人见解。
摘要由CSDN通过智能技术生成

Link


Problem


Sample-1 in
5 7
*......
..**..*
.*...*.
...*...
....*..
Sample-1 out
3 4
Sample-2 in
10 10
**..**.**.
***....*..
*...**.**.
...*..*...
..........
**...**.*.
..*.*....*
..........
***..*.*..
.***..*...
Sample-2 out
4 12

思路

这天空如此狭小
暴力。
dfs处理每个星座,桶排序处理星系。反正数据不大,随便敲。


Code

#include<cstdio>
#include<cmath>
#include<iostream>
using namespace std;
int n,m,maxx,tongji,a[2001][2001],b[2001][2001],ans[100010];
int fx[10]={-1,0,1,-1,1,-1,0,1},fy[10]={-1,-1,-1,0,0,1,1,1};
char c;
bool check(int xx,int yy){
	if(xx == 0 || yy == 0 || xx > n || yy > m) return 0;
	return 1;
}
int dfs(int x,int y){  //dfs得出此星座的大小
	int anss = 1;
	b[x][y] = 1;
	for(int i = 0; i < 8; ++i)
	  if(check(x+fx[i],y+fy[i]) == 1)  //单纯判断边界
	    if(b[x+fx[i]][y+fy[i]] == 0 && a[x+fx[i]][y+fy[i]] == 1)
	      anss += dfs(x+fx[i],y+fy[i]);
	return anss;
}
int main(){
	scanf("%d%d",&n,&m);
	for(int i = 1; i <= n; ++i)  //输入
	for(int j = 1; j <= m; ++j){
		c = getchar();
		while(c!='*' && c!='.') c = getchar();
		if(c == '*') a[i][j] = 1;
	}
	for(int i = 1; i <= n; ++i)
	  for(int j = 1; j <= m; ++j)
	    if(b[i][j] == 0 && a[i][j] == 1)
	    	++ans[dfs(i,j)];   //这个星座加入大小为dfs(i,j)的星系
	for(int i = 1; i <= 100000; ++i)  //统计星系
	  if(ans[i] > 0){
	  	maxx = max(maxx,i*ans[i]);  //星系大小 = 星座大小*星座数
	  	++tongji;
	  }
	printf("%d %d",tongji,maxx);
}

★Arknights-星极-寻耀★

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值