Where's Waldorf?

系统 1760 0

题意:找相同字符窜首字母的地址

读题。。。。 A word matches a straight, uninterrupted line of letters in the grid. The outputs of two consecutive cases will be separated by a blank line.这两句haunted都没读出来。。。。一个说字符窜必须直线,一个说输出在两组数据内,第一个没读导致我用搜索TLE,第二个WA

      #include<stdio.h>
      
        

#include
      
      <
      
        string
      
      .h>


      
        char
      
       str[
      
        100
      
      ][
      
        100
      
      ],rem[
      
        100
      
      
        ];




      
      
        int
      
       t1[]={-
      
        1
      
      ,-
      
        1
      
      ,-
      
        1
      
      ,
      
        0
      
      ,
      
        0
      
      ,
      
        1
      
      ,
      
        1
      
      ,
      
        1
      
      
        };


      
      
        int
      
       t2[]={-
      
        1
      
      ,
      
        0
      
      ,
      
        1
      
      ,-
      
        1
      
      ,
      
        1
      
      ,-
      
        1
      
      ,
      
        0
      
      ,
      
        1
      
      
        };


      
      
        int
      
      
         len,m,n;




      
      
        void
      
       Rever(
      
        int
      
       row,
      
        int
      
       col,
      
        int
      
      
         ans)

{

    
      
      
        if
      
      (str[row][col]>=
      
        '
      
      
        A
      
      
        '
      
       && str[row][col]<=
      
        '
      
      
        Z
      
      
        '
      
      ) str[row][col]+=
      
        32
      
      
        ;

    
      
      
        if
      
      (rem[ans]>=
      
        '
      
      
        A
      
      
        '
      
       && rem[ans]<=
      
        '
      
      
        Z
      
      
        '
      
      ) rem[ans]+=
      
        32
      
      
        ;

}




      
      
        int
      
       Action(
      
        int
      
       row,
      
        int
      
      
         col)

{

    
      
      
        int
      
       ans=
      
        0
      
      
        ,i;

    
      
      
        int
      
       x=row,y=
      
        col;

    Rever(row,col,ans);

    
      
      
        if
      
      (str[row][col]!=rem[ans]) 
      
        return
      
      
        0
      
      
        ;

    
      
      
        for
      
       (i=
      
        0
      
      ;i<
      
        8
      
      ;i++
      
        )

    {

        ans
      
      =
      
        0
      
      
        ;

        
      
      
        while
      
      (
      
        1
      
      
        )

        {

            Rever(row,col,ans);

            
      
      
        if
      
      (row<
      
        0
      
       || col<
      
        0
      
       || row>=m || col>=n || str[row][col]!=rem[ans]) 
      
        break
      
      
        ;

            {

                
      
      
        if
      
      (ans==len-
      
        1
      
      ) 
      
        return
      
      
        1
      
      
        ;

                ans
      
      ++
      
        ;

                row
      
      +=t1[i];col+=
      
        t2[i];

            }

        }

        row
      
      =x;col=
      
        y;

    }

    
      
      
        return
      
      
        0
      
      
        ;

}




      
      
        int
      
      
         main()

{

    
      
      
        int
      
      
         i,j;

    
      
      
        int
      
      
         T,x,k;

    
      
      
        int
      
      
         flag;

    scanf(
      
      
        "
      
      
        %d
      
      
        "
      
      ,&
      
        T);

    
      
      
        while
      
      (T--
      
        )

    {

        scanf(
      
      
        "
      
      
        %d%d
      
      
        "
      
      ,&m,&
      
        n);

        
      
      
        for
      
       (i=
      
        0
      
      ;i<m;i++
      
        )

        {

            scanf(
      
      
        "
      
      
        %s
      
      
        "
      
      
        ,str[i]);

        }

        scanf(
      
      
        "
      
      
        %d
      
      
        "
      
      ,&
      
        x);

        
      
      
        for
      
       (k=
      
        0
      
      ;k<x;k++
      
        )

        {

            scanf(
      
      
        "
      
      
        %s
      
      
        "
      
      
        ,rem);

            len
      
      =
      
        strlen(rem);

            
      
      
        for
      
       (i=
      
        0
      
      ;i<m;i++
      
        )

            {

                
      
      
        for
      
       (j=
      
        0
      
      ;j<n;j++
      
        )

                {

                    flag
      
      =
      
        0
      
      
        ;

                    flag
      
      =
      
        Action(i,j);

                    
      
      
        if
      
      (flag) 
      
        break
      
      
        ;

                }

                
      
      
        if
      
      (flag) 
      
        break
      
      
        ;

            }

            printf(
      
      
        "
      
      
        %d %d\n
      
      
        "
      
      ,i+
      
        1
      
      ,j+
      
        1
      
      
        );

        }

        
      
      
        if
      
      (T!=
      
        0
      
      ) printf(
      
        "
      
      
        \n
      
      
        "
      
      
        );

    }

    
      
      
        return
      
      
        0
      
      
        ;

}
      
    

 

 

Where's Waldorf?


更多文章、技术交流、商务合作、联系博主

微信扫码或搜索:z360901061

微信扫一扫加我为好友

QQ号联系: 360901061

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描下面二维码支持博主2元、5元、10元、20元等您想捐的金额吧,狠狠点击下面给点支持吧,站长非常感激您!手机微信长按不能支付解决办法:请将微信支付二维码保存到相册,切换到微信,然后点击微信右上角扫一扫功能,选择支付二维码完成支付。

【本文对您有帮助就好】

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描上面二维码支持博主2元、5元、10元、自定义金额等您想捐的金额吧,站长会非常 感谢您的哦!!!

发表我的评论
最新评论 总共0条评论