1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
| #define MAXN 1010
int dirx[4]={-1,1,0,0}; int diry[4]={0,0,-1,1};
struct cor { int x,y,step; };
bool mud[MAXN][MAXN], inq[MAXN][MAXN]; queue<cor>Q; int ans;
int main() { int orix,oriy,n; cin>>orix>>oriy>>n; for(int i=1,a,b;i<=n;i++) { cin>>a>>b; mud[a+500][b+500]=true; } Q.push({orix+500,oriy+500,0}); ans=0; inq[orix+500][oriy+500]=true; while(!Q.empty()) { cor cur=Q.front(); if(cur.x==500&&cur.y==500) break; for(int i=0;i<4;i++) { int newx=cur.x+dirx[i], newy=cur.y+diry[i]; if(newx>=0&&newx<=1000 && newy>=0&&newy<=1000 && inq[newx][newy]==false && mud[newx][newy]==false ) { Q.push({newx, newy, cur.step+1}); inq[newx][newy]=true; } } Q.pop(); } cout<<Q.front().step; return 0; }
|