• URAL 1033 Labyrinth(DFS)


    Administration of the labyrinth has decided to start a new season with new wallpapers. For this purpose they need a program to calculate the surface area of the walls inside the labyrinth. This job is just for you!
    The labyrinth is represented by a matrix N×N (3 ≤ N ≤ 33, you see, ‘3’ is a magic digit!). Some matrix cells contain a dot character (‘.’) that denotes an empty square. Other cells contain a diesis character (‘#’) that denotes a square filled by monolith block of stone wall. All squares are of the same size 3×3 meters.
    The walls are constructed around the labyrinth (except for the upper left and lower right corners, which are used as entrances) and on the cells with a diesis character. No other walls are constructed. There always will be a dot character at the upper left and lower right corner cells of the input matrix.
    Problem illustration
    Your task is to calculate the area of visible part of the walls inside the labyrinth. In other words, the area of the walls' surface visible to a visitor of the labyrinth. Note that there's no holes to look or to move through between any two adjacent blocks of the wall. The blocks are considered to be adjacent if they touch each other in any corner. See picture for an example: visible walls inside the labyrinth are drawn with bold lines. The height of all the walls is 3 meters.

    Input

    The first line of the input contains the single number N. The next N lines contain N characters each. Each line describes one row of the labyrinth matrix. In each line only dot and diesis characters will be used and each line will be terminated with a new line character. There will be no spaces in the input.

    Output

    Your program should print to the output a single integer — the exact value of the area of the wallpaper needed.

    Sample

    input output
    5
    .....
    ...##
    ..#..
    ..###
    .....
    
    198
    
    
    卧槽。就是在墙上贴壁纸来着,mp从1~n存图。其余的赋为#,再DFS。。

    得到的sum得减4,出口和入口吗。。

    还有可能搜不到出口。所以要检验=-=不行再从出口搜一次=-=

    #include<iostream>
    #include<cstdio>
    #include<cstring>
    #include<algorithm>
    using namespace std;
    int dr[4][2]={{0,1},{0,-1},{-1,0},{1,0}};
    char mp[35][35];
    int visit[35][35];
    int n,sum;
    
    void dfs(int x,int y)
    {
       for(int i=0;i<4;i++)
       {
           int xx=x+dr[i][0];
           int yy=y+dr[i][1];
           if(!visit[xx][yy]&&mp[xx][yy]=='.')
           {
              visit[xx][yy]=1;
              dfs(xx,yy);
           }
           else if(mp[xx][yy]=='#')
              sum++;
       }
    }
    
    int main()
    {
        char s[35];
        while(~scanf("%d",&n))
        {
            sum=0;
            memset(mp,'#',sizeof(mp));//还能够这样?原谅我仅仅会赋0和-1=-=
            for(int i=1;i<=n;i++)
            {
                scanf("%s",s);
                for(int j=1;j<=n;j++)
                    mp[i][j]=s[j-1];
    
            }
            visit[1][1]=1;
            dfs(1,1);
            if(!visit[n][n])
            {
                visit[n][n]=1;
                dfs(n,n);
            }
            printf("%d
    ",(sum-4)*9);
        }
        return 0;
    }
    


  • 相关阅读:
    sicnu 区域赛选拔赛
    LeetCode 7 反转整数
    2018 CCPC网络赛 Dream&&Find Integer
    矩阵快速幂的总结以及模版
    通过event 找到tableview 上的某一个cell
    mac 安装完成phpsorm 运行提示 503解决办法
    指纹验证
    旋转图片
    xcrun: error: active developer path ("/Users/apple/Desktop/Xcode5.app/Contents/Developer") does not exist, use xcode-select to change
    我所了解的block
  • 原文地址:https://www.cnblogs.com/lytwajue/p/6777296.html
Copyright © 2020-2023  润新知