比赛 搜索题... 评测结果 AAAAAAAAAA
题目名称 最大的湖 最终得分 100
用户昵称 · 运行时间 0.010 s
代码语言 C++ 内存使用 0.35 MiB
提交时间 2014-11-04 18:01:56
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<queue>
using namespace std;
int n,m,k;
int ans=0;
int dt[101][101];
int d[5]={0,1,0,-1};
int b[5]={1,0,-1,0};
queue<int> q;
queue<int> p;
void bfs(int i,int j)
{
	int tot=1;
	p.push(i);
	q.push(j);
	dt[i][j]=0;

	while( !q.empty()  && !p.empty() )
	{
		int k=p.front(),h=q.front();
		dt[k][h]=0;
		for(int i=0;i<=3;i++)
		{
			if(  k+b[i] >= 0  && k+b[i] <= n &&  h+d[i] >= 0  && h+d[i] <= m )
  	if(dt[k+b[i]][h+d[i]])
			{
					p.push(k+b[i]);
					q.push(h+d[i]);
					dt[k+b[i]][h+d[i]]=0;
					tot++;
			}
  }
  q.pop();
		p.pop();
	}
	if(ans<tot) ans=tot;
}

int main()
{
	freopen("lake.in","r",stdin);
	freopen("lake.out","w",stdout);

	cin>>n>>m>>k;
	for(int i=1;i<=k;i++)
	{
		int aa,bb;
		cin>>aa>>bb;
		dt[aa][bb]=1;
	}

	for(int i=1;i<=n;i++)
	{
		for(int j=1;j<=m;j++)
		{
			if(dt[i][j])
			{
				bfs(i,j);
			}
		}
	}

	cout<<ans;

}