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

ZOJ2165 简单DFS搜索

时间:2014-07-13 20:30:45      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   for   io   

 1 #include<iostream>
 2 #include<cstring>
 3 #include<cstdlib>
 4 #include<algorithm>
 5 #define MAXN 25
 6 using namespace std;
 7 int h,w;
 8 int ans;
 9 int dir[4][2]={-1,0,1,0,0,-1,0,1};
10 char map[MAXN][MAXN];
11 
12 bool ok(int x,int y)
13 {
14     if(x<0||x>=h) return false;
15     if(y<0||y>=w) return false;
16     if(map[x][y]==#) return false;
17     return true;
18 }
19 void dfs(int a,int b){
20     map[a][b]=#;
21     ans++;
22     int i;
23     for(i=0;i<4;i++){
24        int xx=a+dir[i][0];
25        int yy=b+dir[i][1];
26        if(ok(xx,yy)){
27             dfs(xx,yy);
28        }
29     }
30 
31 }
32 int main(){
33     int q,e;
34     int i,j;
35     while(cin>>w>>h){
36         for(i=0;i<h;i++){
37             for(j=0;j<w;j++){
38                 cin>>map[i][j];
39                 if(map[i][j]==@)
40                   {q=i,e=j;}
41             }
42         }
43         ans=0;
44         dfs(q,e);
45         cout<<ans<<endl;
46         for(i=0;i<h;i++){
47             for(j=0;j<w;j++){
48                 cout<<map[i][j];
49             }
50             cout<<endl;
51         }
52     }
53     return 0;
54 }

简单的DFS  刚开始把i定义成全局变量  orz  查了好久。。。这游戏太难了

ZOJ2165 简单DFS搜索,布布扣,bubuko.com

ZOJ2165 简单DFS搜索

标签:style   blog   color   os   for   io   

原文地址:http://www.cnblogs.com/acplayfacm/p/3840990.html

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