HDU1312——Red and Black (DFS)

本文介绍了一种使用深度优先搜索(DFS)算法解决迷宫寻路问题的方法,通过遍历从起始位置可达的所有黑色方块来计算人可以到达的路径数量。提供了两种不同的实现方式,帮助读者理解如何在二维数组中应用DFS。

Red and Black

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 12907    Accepted Submission(s): 7983


Problem Description
There is a rectangular room, covered with square tiles. Each tile is colored either red or black. A man is standing on a black tile. From a tile, he can move to one of four adjacent tiles. But he can't move on red tiles, he can move only on black tiles.

Write a program to count the number of black tiles which he can reach by repeating the moves described above.
 

Input
The input consists of multiple data sets. A data set starts with a line containing two positive integers W and H; W and H are the numbers of tiles in the x- and y- directions, respectively. W and H are not more than 20.

There are H more lines in the data set, each of which includes W characters. Each character represents the color of a tile as follows.

'.' - a black tile
'#' - a red tile
'@' - a man on a black tile(appears exactly once in a data set)
 

Output
For each data set, your program should output a line which contains the number of tiles he can reach from the initial tile (including itself).
 

Sample Input
6 9
....#......#..............................#@...#.#..#.
11 9
.#..........#.#######..#.#.....#..#.#.###.#..#.#..@#.#..#.#####.#..#.......#..#########............
11 6
..#..#..#....#..#..#....#..#..###..#..#..#@...#..#..#....#..#..#..
7 7
..#.#....#.#..###.###...@...###.###..#.#....#.#..
0 0
 

Sample Output
45
59
6
13

问题描述:'@'位置为人所在的位置,' . '为黑色块, ' # '为红色块,人儿只能走黑色块,问可以走多少块。
其实就是问@旁边有多少' . ' 是连着的
这个和HDU1241找油田那个题很像,不是很难,但是……呵!!!

AC代码

代码1:
和HDU1241做法一样

#include<iostream>
#include<cstdio>
#include<cstring>
#include <math.h>
#include <algorithm>
using namespace std;

char a[21][21];
int b[21][21],m,n,sum;
void dfs(int i,int j)
{
    if(a[i][j]=='#'||i<0||i>m-1||j<0||j>n-1||b[i][j]==1||a[i][j]!='.') 
        return ;
    b[i][j]=1;
    sum++;
    dfs(i+1,j);
    dfs(i-1,j);
    dfs(i,j-1);
    dfs(i,j+1);
}
int main()
{
    while(cin>>n>>m)
    {
        int x,y;
        if(m==0&&n==0) return 0;
        sum=0;
        for(int i=0; i<21; i++)
        {
            for(int j=0; j<21; j++)
            {
                b[i][j]=0;
            }
        }
        for(int i=0; i<m; i++)
        {
            for(int j=0; j<n; j++)
            {
                cin>>a[i][j];
                if(a[i][j]=='@')
                {
                    x=i;
                    y=j;
                    a[i][j]='.';
                }
            }
        }
        dfs(x,y);
        /*for(int i=0;i<n;i++)
        {
            for(int j=0;j<m;j++)
            {
                cout<<b[i][j];
            }
            cout<<endl;
        }*/
        cout<<sum<<endl;
    }
    return 0;
}

代码2:

#include<iostream>
#include<cstdio>
#include<cstring>
#include <math.h>
#include <algorithm>
using namespace std;

char a[25][25];
int m,n;
int sum;
void dfs(int i,int j)
{
    a[i][j]='!';///访问过的位置标记成!
    sum++;
    if(i-1>=0&&a[i-1][j]=='.')///各个方向
        dfs(i-1,j);
    if(i+1<m&&a[i+1][j]=='.')
        dfs(i+1,j);
    if(j-1>=0&&a[i][j-1]=='.')
        dfs(i,j-1);
    if(j+1>=0&&a[i][j+1]=='.')
        dfs(i,j+1);
}
int main()
{
    while(cin>>n>>m)
    {
        if(n==0&m==0)
            break;
        for(int i=0; i<m; i++) ///这个地方输入如果改成 for(int i=0; i<n; i++)
             cin>>a[i];        ///                          for(int j=0;j<m;j++)
                               ///                              cin>>a[i][j];
                               ///最后一组数据结果是错的,我也不知道为啥
        sum=0;
        for(int i=0; i<m; i++)
            for(int j=0; j<n; j++)
            {
                if(a[i][j]=='@') ///找人儿的位置,@
                    dfs(i,j);
            }
        cout<<sum<<endl;
    }
    return 0;
}

源码地址: https://pan.quark.cn/s/a4b39357ea24 欧姆龙触摸屏编程软件MPTST 5.02是专门为欧姆龙品牌的工业触摸屏而研发的编程解决方案,它赋予用户在直观界面上构建、修改以及排错触摸屏应用程序的能力。 该软件在工业自动化领域具有不可替代的地位,特别是在生产线监视、设备操控以及人机互动系统中发挥着核心作用。 欧姆龙MPTST(Machine Process Terminal Software Touch)5.02版本配备了多样化的功能,旨在应对不同种类的触摸屏项目要求。 以下列举了若干核心特性:1. **图形化编程**:MPTST 5.02采用图形化的编程模式,允许用户借助拖拽动作来设计屏幕布局,设定按钮、滑块、指示灯等组件,显著简化了编程流程,并提升了工作效率。 2. **兼容性**:该软件能够适配欧姆龙的多个触摸屏产品线,包括CX-One、NS系列、NJ/NX系列等,使用户可以在同一个平台上完成对不同硬件的编程任务。 3. **数据通信**:MPTST 5.02具备与PLC(可编程逻辑控制器)进行数据交互的能力,通过将触摸屏作为操作界面,实现生产数据的显示与输入,以及设备状态的监控。 4. **报警与事件管理**:软件中集成了报警和事件管理机制,可以设定多种报警标准,一旦达到预设条件,触摸屏便会展示对应的报警提示,助力操作人员迅速做出响应。 5. **模拟测试**:在设备实际连接之前,MPTST 5.02支持用户进行脱机模拟测试,以此验证程序的正确性与稳定性。 6. **项目备份与恢复**:为了防止数据遗失,MPTST 5.02提供了项目文件的备份及还原功能,对于多版本控制与团队协作具有显著价值。 7. **多语言支持**:针对全球化的应...
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值