POJ 3626 Mud Puddles(bfs)

来源:互联网 发布:iphone自动读书软件 编辑:程序博客网 时间:2024/05/22 04:39

Farmer John is leaving his house promptly at 6 AM for his daily milking of Bessie. However, the previous evening saw a heavy rain, and the fields are quite muddy. FJ starts at the point (0, 0) in the coordinate plane and heads toward Bessie who is located at (XY) (-500 ≤ X ≤ 500; -500 ≤ Y ≤ 500). He can see all N (1 ≤ N ≤ 10,000) puddles of mud, located at points (AiBi) (-500 ≤ Ai ≤ 500; -500 ≤ Bi ≤ 500) on the field. Each puddle occupies only the point it is on.

Having just bought new boots, Farmer John absolutely does not want to dirty them by stepping in a puddle, but he also wants to get to Bessie as quickly as possible. He's already late because he had to count all the puddles. If Farmer John can only travel parallel to the axes and turn at points with integer coordinates, what is the shortest distance he must travel to reach Bessie and keep his boots clean? There will always be a path without mud that Farmer John can take to reach Bessie.

Input

* Line 1: Three space-separate integers: XY, and N.
* Lines 2..N+1: Line i+1 contains two space-separated integers: Ai and Bi

Output

* Line 1: The minimum distance that Farmer John has to travel to reach Bessie without stepping in mud.

Sample Input
1 2 70 2-1 33 11 14 2-1 12 2
Sample Output
11

题解:

一题很简单的bfs,就是由于横纵坐标有负数,所有坐标加上500就是了

代码:

#include<algorithm>#include<iostream>#include<cstring>#include<stdio.h>#include<math.h>#include<string>#include<stdio.h>#include<queue>#include<stack>#include<map>#include<deque>using namespace std;struct node{    int x,y;    int step;};int p[1005][1005];//存图int dirx[4]={0,0,-1,1};//方向数组int diry[4]={1,-1,0,0};queue<node>q;int main(){    int etx,ety,i,j,k,n,m,x,y,s,xx,yy;    node now,next;    memset(p,0,sizeof(p));    scanf("%d%d%d",&etx,&ety,&n);    etx+=500;    ety+=500;//由于有负数,加上500    for(i=0;i<n;i++)    {        scanf("%d%d",&x,&y);        x+=500;        y+=500;        p[x][y]=1;    }    now.x=500;    now.y=500;    now.step=0;    q.push(now);    p[500][500]=1;    s=0;    while(!q.empty())//日常bfs    {        now=q.front();        q.pop();        for(i=0;i<4;i++)        {            xx=now.x+dirx[i];            yy=now.y+diry[i];            if(xx>=0&&yy>=0&&xx<=1000&&yy<=1000&&!p[xx][yy])            {                next.step=now.step+1;                next.x=xx;                next.y=yy;                p[xx][yy]=1;                if(p[etx][ety])                {                    s=next.step;                    goto loop;                }                q.push(next);            }        }    }    loop:        printf("%d\n",s);    return 0;}


原创粉丝点击