记录编号 128886 评测结果 AAAAAAAAAAAAAAAAAAAA
题目名称 [入门经典] 黑白图像 最终得分 100
用户昵称 Gravatar奶猹 是否通过 通过
代码语言 C++ 运行时间 0.090 s
提交时间 2014-10-18 18:46:21 内存使用 2.72 MiB
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstring>
#include<string>
#include<queue>
using namespace std;
int n;
string s0;
int map[710][710];
bool b[710][710];
int ans=0;
queue <int> qx,qy;

void bfs(int ,int );

int main()
{
	freopen("common.in","r",stdin);
	freopen("common.out","w",stdout);
	ios::sync_with_stdio(false);
	cin>>n;
	for(int i=1;i<=n;i++)
	{
		cin>>s0;
		for(int j=0;j<n;j++)
		map[i][j+1]=s0[j]-'0';
	}
	for(int i=1;i<=n;i++)
	for(int j=1;j<=n;j++)
	if(map[i][j]&&!b[i][j])
	{
		bfs(i,j);
		ans++;
	}
	cout<<ans<<endl;
	return 0;
}
void bfs(int x,int y)
{
	qx.push(x);
	qy.push(y);
	b[x][y]=1;
	while(!qx.empty())
	{
		int xx=qx.front();
		int yy=qy.front();//找八个方向 
		if(map[xx+1][yy+1]&&!b[xx+1][yy+1])
		{
			qx.push(xx+1);
			qy.push(yy+1);
			b[xx+1][yy+1]=1;
		}
		if(map[xx+1][yy-1]&&!b[xx+1][yy-1])
		{
			qx.push(xx+1);
			qy.push(yy-1);
			b[xx+1][yy-1]=1;
		}
		if(map[xx][yy+1]&&!b[xx][yy+1])
		{
			qx.push(xx);
			qy.push(yy+1);
			b[xx][yy+1]=1;
		}
		if(map[xx][yy-1]&&!b[xx][yy-1])
		{
			qx.push(xx);
			qy.push(yy-1);
			b[xx][yy-1]=1;
		}
		if(map[xx-1][yy+1]&&!b[xx-1][yy+1])
		{
			qx.push(xx-1);
			qy.push(yy+1);
			b[xx-1][yy+1]=1;
		}
		if(map[xx-1][yy-1]&&!b[xx-1][yy-1])
		{
			qx.push(xx-1);
			qy.push(yy-1);
			b[xx-1][yy-1]=1;
		}
		if(map[xx+1][yy]&&!b[xx+1][yy])
		{
			qx.push(xx+1);
			qy.push(yy);
			b[xx+1][yy]=1;
		}
		if(map[xx-1][yy]&&!b[xx-1][yy])
		{
			qx.push(xx-1);
			qy.push(yy);
			b[xx-1][yy]=1;
		}
		qx.pop();
		qy.pop();
	}
}