码迷,mamicode.com
首页 > 其他好文 > 详细

【map|BFS】BZOJ 1627 [Usaco2007 Dec]穿越泥地

时间:2017-09-17 17:35:21      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:scan   gif   event   open   struct   names   can   pair   art   

因为题目有坐标可以为负,所以解决方法有两种。

一是整体把棋盘的路线加上一个比较大的数值 之后再进行操作 优点:运行速度快 

二是用map<pair<int,int>,bool> 储存 优点:简单易写 

技术分享
#include <cstdio>
#include <algorithm>
#include <cstring>
#include <queue>
#include <map>
using namespace std;

struct node{
    int x,y,step;
}point[100005],Start;

map<pair<int,int>,bool>vis;
map<pair<int,int>,bool>Map;

int fx[]={0,0,-1,0,1},fy[]={0,-1,0,1,0};
int Sx,Sy,n,step;

void BFS(){
    queue<node>Q;
    vis[make_pair(0,0)]=1;
    Start.x=0;
    Start.y=0;
    Start.step=0;
    Q.push(Start);
    while( !Q.empty() ){
        node now = Q.front();
        Q.pop();
        for(int i=1;i<=4;i++){
            int tx = now.x + fx[i];
            int ty = now.y + fy[i];
            if(tx==Sx && ty==Sy){
                printf("%d\n",now.step+1);
                return;
            }
            if(Map[make_pair(tx,ty)] || vis[make_pair(tx,ty)]) continue;
            node sb;
            sb.x=tx;
            sb.y=ty;
            vis[make_pair(tx,ty)]=1;
            sb.step=now.step+1;
            Q.push(sb);
        }
    }
}

void init(){
    scanf("%d%d%d",&Sx,&Sy,&n);
    for(int i=1;i<=n;i++){
        int a,b;
        scanf("%d%d",&a,&b);
        Map[make_pair(a,b)]=1;
    }
}

int main(){
    init();
    BFS();
    return 0;
}
方法2(运行速度比较慢)

 

【map|BFS】BZOJ 1627 [Usaco2007 Dec]穿越泥地

标签:scan   gif   event   open   struct   names   can   pair   art   

原文地址:http://www.cnblogs.com/OIerLYF/p/7536135.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!