记录编号 |
137534 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[USACO Nov07] 最大的湖 |
最终得分 |
100 |
用户昵称 |
博文 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.006 s |
提交时间 |
2014-11-04 21:03:07 |
内存使用 |
1.26 MiB |
显示代码纯文本
/*
Name:
Date: 04/11/14 08:24
Description:
Analysis:
*/
#include<cstdio>
#include<iostream>
#include<algorithm>
#include<cstring>
#include<queue>
using namespace std;
int ans=0,n,m,k;
bool a[705][705],b[705][705];
int dx[15]={0,-1,0 ,0,1};
int dy[15]={0, 0,-1,1,0};
struct node{
int x,y;
};
node mpair(int x,int y)
{
node tmp;
tmp.x=x,tmp.y=y;
return tmp;
}
queue<node> q;
void BFS( )
{
int tot=1;
while(!q.empty()){
int x=q.front().x,y=q.front().y;
q.pop();
for(int i=1;i<=4;i++){
if(x+dx[i]<=n && x+dx[i]>0 && y+dy[i]>0 && y+dy[i]<=m)
if(a[x+dx[i]][y+dy[i]] ){
a[x+dx[i]][y+dy[i]]=0;
tot++;
q.push(mpair(x+dx[i],y+dy[i]));
}
}
}
if(tot>ans) ans=tot;
}
int main()
{
freopen("lake.in","r",stdin);
freopen("lake.out","w",stdout);
scanf("%d%d%d",&n,&m,&k);
for(int i=1,x,y;i<=k;i++){
scanf("%d%d",&x,&y);
a[x][y]=1;
}
for(int i=1;i<=n;i++){
for(int j=1;j<=m;j++){
if(a[i][j] ){
a[i][j]=0;
q.push(mpair(i,j));
BFS();
}
}
}
printf("%d",ans);
fclose(stdin);
fclose(stdout);
//while(1);
return 0;
}