zoukankan      html  css  js  c++  java
  • HDU 1241 连通块问题(DFS入门题)

    Input

    The input file contains one or more grids. Each grid begins with a line containing m and n, the number of rows and columns in the grid, separated by a single space. If m = 0 it signals the end of the input; otherwise 1 <= m <= 100 and 1 <= n <= 100. Following this are m lines of n characters each (not counting the end-of-line characters). Each character corresponds to one plot, and is either `*', representing the absence of oil, or `@', representing an oil pocket.
     
    Output
    For each grid, output the number of distinct oil deposits. Two different pockets are part of the same oil deposit if they are adjacent horizontally, vertically, or diagonally. An oil deposit will not contain more than 100 pockets.
     
    Sample Input
    1 1
    *
    3 5
    *@*@*
    **@**
    *@*@*
    1 8
    @@****@*
    5 5 
    ****@
    *@@*@
    *@**@
    @@@*@
    @@**@
    0 0 
    Sample Output
    
    
    
    

    这题还是比较好理解的,有着重叠的子问题,调用递归即可,感觉和DP有点不同,

    DP重叠子问题后会有状态的转移,这个只用递归即可。(个人理解,刚学,比较菜)

     1 #include<bits/stdc++.h>
     2 using namespace std ;
     3 
     4 char a[105][105];
     5 void DFS(int x, int y)
     6 {
     7     a[x][y]=0;
     8     int X[8]={-1,-1,0,1,1,1,0,-1};
     9     int Y[8]={0,1,1,1,0,-1,-1,-1};
    10     for(int k=0; k<8; k++){
    11         int i=x+X[k];
    12         int j=y+Y[k];
    13         if(a[i][j]=='@'){
    14             DFS(i,j);
    15         }
    16     }
    17 }
    18 int main ()
    19 {
    20     int n,m;
    21     while(cin>>n>>m)
    22     {
    23         if(n==0&&m==0)
    24             break;
    25 
    26         memset(a, 0, sizeof(a));
    27         for(int i=0; i<n; i++)
    28             for(int j=0; j<m; j++)
    29                 cin>>a[i][j];
    30 
    31         int cnt=0;
    32         for(int i=0; i<n; i++)
    33             for(int j=0; j<m; j++)
    34              if(a[i][j]=='@'){
    35                 cnt++;
    36                 DFS(i,j);
    37             }
    38         cout<<cnt<<endl;
    39     }
    40     return 0;
    41 }
     
  • 相关阅读:
    内置函数filter()和匿名函数lambda解析
    time&datetime模块详解
    python学习笔记:*args和**kwargs使用原理?
    python学习笔记:深浅拷贝的使用和原理
    python传参是传值还是传引用
    第215天:Angular---指令
    第214天:Angular 基础概念
    第213天:12个HTML和CSS必须知道的重点难点问题
    第212天:15种CSS居中的方式,最全了
    第211天:git和github的区别和使用详解
  • 原文地址:https://www.cnblogs.com/Yokel062/p/10183024.html
Copyright © 2011-2022 走看看