NOIopenjudge 2405:Avoid The Lakes

总时间限制: 
20000ms

 

单个测试点时间限制: 
1000ms

 

内存限制: 
65536kB
描述
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.

输入
* Line 1: Three space-separated integers: N, M, 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

输出
* Line 1: The number of cells that the largest lake contains.
样例输入
3 4 5
3 2
2 2
3 1
2 3
1 1
样例输出
4
提示
INPUT DETAILS:


The farm is a grid with three rows and four columns; five of the cells are submerged. They are located in the positions (row 3, column 2); (row 2, column 2); (row 3, column 1); (row 2, column 3); (row 1, column 1):
# . . .
. # # .
# # . .

OUTPUT DETAILS:

The largest lake consists of the input\’s first four cells.

来源
USACO November 2007 Bronze
今天终于可以结束了,noiopenjudge ,教练说的部分终于刷完了,就是一个dfs 。
累觉不爱 。
 1 #include <iostream>
 2 #include <cstring>
 3 #include <cstdio>
 4 const int N = 100 + 11 ;
 5 using namespace std ;
 6 int n , m , k ; 
 7 char board[N][N] , ss[N] ; 
 8 int sj[4][2] = { {1,0} , {-1,0} , {0,1} , {0,-1} } ;
 9 
10 void Init( )
11 {
12     scanf( "%d%d%d" , &n , &m , &k ) ;
13     memset( board , \'W\' , sizeof(board) ) ;
14     int x , y ;
15     for( int i = 1 ; i <= k ; ++i )
16     {
17        scanf( "%d%d" , &x , &y  ) ;
18        board[x][y] = \'#\' ;
19     }
20 }
21 
22 int floodfill( int i , int j )
23 {
24     if( i < 1 || j < 1 || i > n || j > m ) return 0 ;
25     if( board[i][j] == \'#\'  )
26     {
27         board[i][j] = \'Y\' ; int ret = 1 ;
28         for( int x = 0 ; x < 4 ; ++x )
29         {
30            ret += floodfill( i + sj[x][0] , j + sj[x][1] ) ;
31         }
32         return ret ;
33     }
34     return 0 ;
35 }
36 
37 
38 void Solve( )
39 {
40     int ans = 0 ; 
41     for( int i = 1 ; i <= n ; ++i )
42     {
43         for( int j = 1 ; j <= n ; ++j )
44             if( board[i][j] == \'#\' ) ans = max ( floodfill( i , j ) , ans ) ;
45     }
46     
47     printf( "%d\n" , ans ) ;        
48 }
49 
50 int main( )
51 {
52 //    freopen( "2045.in" , "r" , stdin ) ; 
53 //    freopen( "2045.out" , "w" , stdout ) ;
54     Init( ) ;
55     Solve( ) ;
56     fclose( stdin ) ;
57     fclose( stdout ) ;
58     return 0 ;
59 }

 

版权声明:本文为Ateisti原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/Ateisti/p/6052603.html