POJ - 1979(深搜)

题目链接:点击打开链接


解析:

深搜无疑,搜的时候记得把当前点置为不可行,之后在搜周边点。另一个坑点是,要特别考虑@周边都是墙这种情况,此时输出0(只有他当前的那一个点)。


完整代码:

#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
using namespace std;
const int maxn = 31;
char g[maxn][maxn];
int d[4][2] = {0 , 1 , 1 , 0 , 0 , -1 , -1 ,0};
void dfs(int si , int sj , int n , int m , int& cnt)
{
    for(int i = 0 ; i < 4 ; i ++){
        int x = si + d[i][0];
        int y = sj + d[i][1];
        if(x < 0 || x >= n || y < 0 || y >= m || g[x][y] == '#') continue;
        g[x][y] = '#';
        cnt += 1;
        dfs(x , y , n , m , cnt);
    }
}

int main()
{
    #ifdef DoubleQ
    freopen("in.txt" , "r" , stdin);
    #endif // DoubleQ
    int n , m;
    while(cin >> n >> m){
        if(n == 0 && m == 0) break;

        string str;
        int si , sj;
        for(int i = 0 ; i < m ; i ++){
            cin >> str;
            for(int j = 0 ; j < n ; j ++){
                g[i][j] = str[j];
                if(str[j] == '@'){
                    si = i;
                    sj = j;
                }
            }
        }
        int cnt = 0;
        /*
        for(int i = 0 ; i < n ;i ++){
            for(int j = 0 ; j < m ; j ++){
                cout << g[i][j] << " ";
            }
            cout << endl;
        }
        */
        dfs(si , sj , m , n , cnt);
        if(cnt == 0) cout << "1" << endl;
        else cout << cnt << endl;

    }
}


你可能感兴趣的:(热身系列)