首页 > 其他 > 详细

Avoid The Lakes

时间:2016-07-28 16:22:30      阅读:347      评论:0      收藏:0      [点我收藏+]
Time Limit:1000MS     Memory Limit:65536KB     64bit IO Format:%lld & %llu
Submit Status

Description

Farmer John‘s farm was flooded in the most recent storm, a fact only aggravated by the information that his cows are deathly afraid of water. His insurance agency will only repay him, however, an amount depending on the size of the largest "lake" on his farm.

The farm is represented as a rectangular grid with N (1 ≤ N ≤ 100) rows and M (1 ≤ M ≤ 100) columns. Each cell in the grid is either dry or submerged, and exactly K (1 ≤ K ≤ N × M) of the cells are submerged. As one would expect, a lake has a central cell to which other cells connect by sharing a long edge (not a corner). Any cell that shares a long edge with the central cell or shares a long edge with any connected cell becomes a connected cell and is part of the lake.

Input

* Line 1: Three space-separated integers: NM, and K
* Lines 2..K+1: Line i+1 describes one submerged location with two space separated integers that are its row and column: R and C

Output

* Line 1: The number of cells that the largest lake contains. 

Sample Input

3 4 5
3 2
2 2
3 1
2 3
1 1

Sample Output

4
 1 #include<cstdio>
 2 #include<cstring>
 3 #include<iostream>
 4 #include<algorithm>
 5 using namespace std;
 6 int a[111][111];
 7 int dx[4]={-1,1,0,0};
 8 int dy[4]={0,0,-1,1};
 9 int n,m,k,ans;
10 void dfs(int x,int y)
11 {
12     if(a[x][y]&&x>=1&&y>=1&&x<=n&&y<=m)
13     {
14         ans++;
15         a[x][y]=0;
16         for(int i = 0;i < 4;i++)
17         {
18             int nx=x+dx[i];
19             int ny=y+dy[i];
20             dfs(nx,ny);
21         }
22     }
23 }
24 int main()
25 {
26     while(scanf("%d%d%d",&n,&m,&k)!=EOF)
27     {
28         int i,j,max=0;
29         memset(a,0,sizeof(a));
30         for(i = 0;i < k;i++)
31         {
32             int r,c;
33             scanf("%d %d",&r,&c);
34             a[r][c]=1;
35         }
36         for(i = 1;i <= n;i++)  //从1开始,别从0.小地方WA了N次
37             for(j = 1;j <= m ;j++)
38             {
39                 ans = 0;
40                 dfs(i,j);
41                 if(ans>max)
42                 max=ans;
43             }
44             printf("%d\n",max);
45     }
46     return 0;
47 }

 

Avoid The Lakes

原文:http://www.cnblogs.com/llal/p/5714834.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!