比赛 |
搜索题... |
评测结果 |
AAAAAAAAAA |
题目名称 |
最大的湖 |
最终得分 |
100 |
用户昵称 |
奶猹 |
运行时间 |
0.005 s |
代码语言 |
C++ |
内存使用 |
0.52 MiB |
提交时间 |
2014-11-04 18:28:50 |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstring>
#include<string>
#include<queue>
using namespace std;
int n,m,t;
int map[210][210];
bool b[210][210];
int ans=0;
int num=0;
queue <int> qx,qy;
void bfs(int ,int );
int main()
{
freopen("lake.in","r",stdin);
freopen("lake.out","w",stdout);
ios::sync_with_stdio(false);
cin>>n>>m>>t;
int x,y;
memset(b,1,sizeof(b));
for(int i=1;i<=n;i++)
for(int j=1;j<=m;j++)
b[i][j]=0;
for(int i=1;i<=t;i++)
{
cin>>x>>y;
map[x][y]=1;
}
for(int i=1;i<=n;i++)
for(int j=1;j<=m;j++)
if(map[i][j]&&!b[i][j])
{
num=0;
bfs(i,j);
if(num>ans)ans=num;
}
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][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]&&!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();
num++;
}
}