zoukankan      html  css  js  c++  java
  • hdu4414(DFS 找十字架数量)

    Problem Description
    The Nazca Lines are a series of ancient geoglyphs located in the Nazca Desert in southern Peru. They were designated as a UNESCO World Heritage Site in 1994. The high, arid plateau stretches more than 80 kilometres (50 mi) between the towns of Nazca and Palpa on the Pampas de Jumana about 400 km south of Lima. Although some local geoglyphs resemble Paracas motifs, scholars believe the Nazca Lines were created by the Nazca culture between 400 and 650 AD.[1] The hundreds of individual figures range in complexity from simple lines to stylized hummingbirds, spiders, monkeys, fish, sharks, orcas, llamas, and lizards.

    Above is the description of Nazca Lines from Wikipedia. Recently scientists found out that those lines form many crosses. Do those crosses have something to do with the Christian religion? Scientists are curious about this. But at first, they want to figure out how many crosses are there. So they took a huge picture of Nazca area from the satellite, and they need you to write a program to count the crosses in the picture.

    To simplify the problem, we assume that the picture is an N*N matrix made up of 'o' and '#', and some '#' can form a cross. Here we call three or more consecutive '#' (horizontal or vertical) as a "segment".

    The definition of a cross of width M is like this:

    1) It's made up of a horizontal segment of length M and a vertical segment of length M.
    2) The horizontal segment and the vertical segment overlap at their centers.
    3) A cross must not have any adjacent '#'.
    4) A cross's width is definitely odd and at least 3, so the above mentioned "centers" can't be ambiguous.
    For example, there is a cross of width 3 in figure 1 and there are no cross in figure 2 ,3 and 4.



    You may think you find a cross in the top 3 lines in figure 2.But it's not true because the cross you find has a adjacent '#' in the 4th line, so it can't be called a "cross". There is no cross in figure 3 and figure 4 because of the same reason.
     
    Input
    There are several test cases.
    In each test case:
    The First line is a integer N, meaning that the picture is a N * N matrix ( 3<=N<=50) .
    Next N line is the matrix.
    The input end with N = 0
     
    Output
    For each test case, output the number of crosses you find in a line.
     
    Sample Input
    4 oo#o o### oo#o ooo# 4 oo#o o### oo#o oo#o 5 oo#oo oo#oo ##### oo#oo oo##o 6 ooo#oo ooo##o o##### ooo#oo ooo#oo oooooo 0
     
    Sample Output
    1 0 0 0
    #include<stdio.h>
    int n,sk,hk,s,h,stakH[1000],stakS[1000],right,lift,up,dow,zxloct;
    char map[105][105];
    int dir[4][2]={{1,0},{-1,0},{0,1},{0,-1}};
    
    void DFS(int i,int j)
    {
        int e;
        map[i][j]='o';
        if(stakS[s]==j)
        dow++;
        for(e=0;e<4;e++)
        if(e<2)
        {
            if(i+dir[e][0]>=0&&i+dir[e][0]<n&&j>=0&&j<n)
            if(map[i+dir[e][0]][j]=='#')
            {
                sk++;
                if(j!=stakS[s])
                stakS[++s]=j;
                DFS(i+dir[e][0],j+dir[e][1]);
            }
        }
        else
        {
            if(i>=0&&i<n&&j+dir[e][1]>=0&&j+dir[e][1]<n)
            if(map[i][j+dir[e][1]]=='#')
            {
                hk++;
                if(e==2)
                right++;
                else
                lift++;
                if(i!=stakH[h])
                stakH[++h]=i;
                if(zxloct==-1)
                {
                    zxloct=i; dow--;
                }
    
                DFS(i,j+dir[e][1]);
            }
        }
        if(zxloct==-1)
        {
            dow--;up++;
        }
    }
    int main()
    {
        int i,j,k;
        while(scanf("%d",&n)==1&&n)
        {
            k=0;getchar();
            for(i=0;i<n;i++)
            {
                scanf("%s",map[i]);
                getchar();
            }
            stakH[0]=-1;
            stakS[0]=-1;
            for(i=0;i<n;i++)
            for(j=0;j<n;j++)
            if(map[i][j]=='#')
            {
                hk=s=h=0;
                right=lift=0;
                up=dow=0;
                zxloct=-1;
                sk=1;stakS[++s]=j;
                DFS(i,j);
        if(s==1&&h==1&&sk%2==1&&hk%2==0&&hk>0&&sk>1&&right==lift&&up==dow&&lift!=0&&up!=0)
                k++;
            }   
    
            printf("%d
    ",k);
        }
    }
    


  • 相关阅读:
    使用Java实现对MySql数据库的导入与导出
    【转】揭开J2EE集群的神秘面纱
    Memcached深度分析
    HSQL入门及使用指南
    系统架构基础篇(高性能基础建设说明与选型条件)
    架构之美 摘抄
    JMS规范及相关实现
    spring3中使用@value注解获取属性值
    Thread Dump 分析综述
    什么中间件及中间件服务器?
  • 原文地址:https://www.cnblogs.com/jiangu66/p/3223612.html
Copyright © 2011-2022 走看看