zoukankan      html  css  js  c++  java
  • HDOJ2579,BFS(三维数组标记)

    三维数组对于我这个萌萌的新手来说真是酷酷的,帅到不行,,,

    三维数组前面还看到空间的哪一题HDOJ1240,这一题时间上的标记,更酷了!!!

    不说废话了,贴一发代码;

    #include <stdio.h>
    #include <iostream>
    #include <sstream>
    #include <string.h>
    #include <math.h>
    #include<stdlib.h>
    #include <queue>
    #include <set>
    #include <algorithm>
    using namespace std;
    #define N 110
    char a[N][N];
    int flag[N][N][110];
    int dx[4]={0,0,-1,1};
    int dy[4]={1,-1,0,0};
    struct asd{
        int x,y,step;
    }now,ne;
    queue<asd>q;
    int r,c,k;
    int ax,ay,bx,by;

    void bfs()
    {
        int i,s;
        memset(flag,0,sizeof(flag));
        while(!q.empty())
            q.pop();
        now.x=ax;
        now.y=ay;
        now.step=0;
        flag[ax][ay][0]=1;
        q.push(now);
        while(!q.empty())
        {
            now=q.front();
            q.pop();
            for(i=0;i<4;i++)
            {
                int aa=dx[i]+now.x;
                int bb=dy[i]+now.y;
                if(a[aa][bb]=='G')
                {
                    printf("%d ",now.step+1);
                    return;
                }
                s=(now.step+1)%k;
                if(aa<0||aa>=r||bb<0||bb>=c||flag[aa][bb][s]||(a[aa][bb]=='#'&&s))
                    continue;
                ne.x=aa;
                ne.y=bb;
                ne.step=now.step+1;
                flag[aa][bb][s]=1;
                q.push(ne);
            }
        }
        printf("Please give me another chance! ");
    }

    int main()
    {
        int i,j,T;
        scanf("%d",&T);
        while(T--)
        {
            scanf("%d%d%d",&r,&c,&k);
            for(i=0;i<r;i++)
            {
                scanf("%s",a[i]);
            }
            int f1,f2;
            f1=f2=0;
            for(i=0;i<r;i++)
            {
                for(j=0;j<c;j++)
                {
                    if(a[i][j]=='Y')
                    {
                        ax=i;
                        ay=j;
                        f2=1;
                    }
                    if(a[i][j]=='G')
                    {
                        bx=i;
                        by=j;
                        f1=1;
                    }
                    if(f1&&f2)
                        break;
                }
                if(f1&&f2)
                    break;
            }
            bfs();
        }
        return 0;
    }

    
  • 相关阅读:
    CentOS下Docker安装ping命令
    CentenOS7 安装docker
    C++ preprocessor "/lib/cpp" fails sanity
    安装M4报错Please port gnulib freadahead.c to your platform!
    python的范式.linalg.norm,numpy tolist()的用法
    Unable to correct problems, you have held broken packages.
    tar解压时候出现tar: invalid option
    Ubuntu换源
    apt更新显示以下错误消息Err:1 http://ports.ubuntu.com xenial InRelease Temporary failure resolving ‘ports.ubunt
    Ubuntu软件操作的相关命令
  • 原文地址:https://www.cnblogs.com/keyboarder-zsq/p/5934593.html
Copyright © 2011-2022 走看看