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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
| #include<cstring> #include<cstdio> #include<iostream> #include<queue> #include<algorithm> using namespace std; struct node{ int x,y; }; int m,n,question[100005][2],dir[4][2]={{1,0},{-1,0},{0,1},{0,-1}},vis[1003][1003],ans[100005],connect=1; bool maze[1003][1003];
int bfs(int, int); bool legal(node, node); int main() { cin>>n>>m; for(int i=1;i<=n;i++) for(int j=1;j<=n;j++){ char a; cin>>a; if(a=='0') maze[i][j]=0; else if(a=='1') maze[i][j]=1; } for(int i=1;i<=m;i++) cin>>question[i][0]>>question[i][1]; for(int i=0;i<100005;i++) ans[i]=1; for(int i=0;i<1003;i++) for(int j=0;j<1003;j++) vis[i][j]=0;
for(int i=1;i<=m;i++) cout<<bfs(question[i][0],question[i][1])<<endl; return 0; } bool legal(node now, node next) { return maze[now.x][now.y]!=maze[next.x][next.y] && next.x>=1 && next.x<=n && next.y>=1 && next.y<=n && vis[next.x][next.y]==0; } int bfs(int x, int y) { queue <node> q; node start; start.x = x; start.y = y; if(vis[start.x][start.y]==0){ vis[start.x][start.y] = connect; q.push(start); } else return ans[vis[start.x][start.y]];
while(!q.empty()){ node now = q.front(); q.pop();
for(int i=0;i<4;i++){ node next; next.x = now.x + dir[i][0]; next.y = now.y + dir[i][1];
if(legal(now,next)){ vis[next.x][next.y] = connect; ans[connect]++; q.push(next); } } } return ans[connect++]; }
|