码迷,mamicode.com
首页 > 其他好文 > 详细

POJ 1979 Red and Black (简单dfs)

时间:2017-11-09 14:50:21      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:.com   end   color   span   include   dfs   ++   for   ges   

题目:

技术分享

 

简单dfs,没什么好说的

 

 

代码:

#include <iostream>
using namespace std;
typedef long long ll;
#define INF 2147483647

int w,h;
char a[22][22];
int dir[4][2] = {-1,0,1,0,0,-1,0,1};
int ans = 0;

void dfs(int x,int y){
    if(x < 0 || x >= h || y < 0 || y >= w || a[x][y] == #) return;
    ans++;
    a[x][y] = #;
    for(int i = 0;i < 4; i++){
        dfs(x+dir[i][0],y+dir[i][1]);
    }
}

int main(){
    while(cin >> w >> h){
        if(w == 0 && h == 0) break;
        ans = 0;
        int sx,sy;
        for(int i = 0;i < h; i++){
            for(int j = 0;j < w; j++){
                cin >> a[i][j];
                if(a[i][j] == @){
                    sx = i;sy = j;
                }
            }
        }
        dfs(sx,sy);
        cout << ans << endl;
    }
    return 0;
} 

 

POJ 1979 Red and Black (简单dfs)

标签:.com   end   color   span   include   dfs   ++   for   ges   

原文地址:http://www.cnblogs.com/zhangjiuding/p/7808356.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!