luogu cogs P1141 01迷宮
阿新 • • 發佈:2017-06-24
pty col span sizeof bsp ans 說明 getch 格式
題目描述
有一個僅由數字0與1組成的n×n格迷宮。若你位於一格0上,那麽你可以移動到相鄰4格中的某一格1上,同樣若你位於一格1上,那麽你可以移動到相鄰4格中的某一格0上。
你的任務是:對於給定的迷宮,詢問從某一格開始能移動到多少個格子(包含自身)。
輸入輸出格式
輸入格式:輸入的第1行為兩個正整數n,m。
下面n行,每行n個字符,字符只可能是0或者1,字符之間沒有空格。
接下來m行,每行2個用空格分隔的正整數i,j,對應了迷宮中第i行第j列的一個格子,詢問從這一格開始能移動到多少格。
輸出格式:輸出包括m行,對於每個詢問輸出相應答案。
輸入輸出樣例
輸入樣例#1:2 2 01 10 1 1 2 2輸出樣例#1:
4 4
說明
所有格子互相可達。
對於20%的數據,n≤10;
對於40%的數據,n≤50;
對於50%的數據,m≤5;
對於60%的數據,n≤100,m≤100;
對於100%的數據,n≤1000,m≤100000。
TLE 3點:
#include<iostream> #include<cstdio> #include<algorithm> #include<cmath> #include<queue> #include<cstdlib> #include<cstring> usingnamespace std; const int N=1001; const int xd[]={0,-1,0,1}; const int yd[]={-1,0,1,0}; struct node{ int x,y; }now,top,nxt; int a[N][N]; int vis[N][N]; queue<node>q; int n; int Q; int strx,stry; int answer; inline int read() { int x=0;char c=getchar(); while(c<‘0‘||c>‘9‘)c=getchar();return x=c-‘0‘; } inline void bfs(int x,int y) { now.x=x; now.y=y; vis[x][y]=1; q.push(now); while(!q.empty()) { top=q.front(); q.pop(); for(int i=0;i<4;i++) { int x=top.x+xd[i]; int y=top.y+yd[i]; if(!vis[x][y]&&x>0&&x<=n&&y>0&&y<=n&&a[top.x][top.y]+a[x][y]==1) { vis[x][y]=1; nxt.x=x; nxt.y=y; q.push(nxt); answer++; } } } return ; } int main() { freopen("maze01.in","r",stdin); freopen("maze01.out","w",stdout); scanf("%d%d",&n,&Q); for(int i=1;i<=n;i++) for(int j=1;j<=n;j++) a[i][j]=read(); while(Q--) { scanf("%d%d",&strx,&stry); answer=1; memset(vis,0,sizeof(vis)); bfs(strx,stry); printf("%d\n",answer); } return 0; }
預處理後離線處理(思路666):
#include <cstdio> #include <cstdlib> #include <cstring> #include <queue> #include <algorithm> #include<iostream> using namespace std; const int MAXN=1010; const int step[4][2]={{0,1},{0,-1},{1,0},{-1,0}}; int N,M,map[MAXN][MAXN]; int ans[MAXN][MAXN]; class Point{public:int x,y;}; queue <Point> ps,q; int res,qx,qy; inline void bfs(int si,int sj) { q.push((Point){si,sj}); int nx,ny; Point tmp; ans[si][sj]=1; res=1; while(q.size()) { tmp=q.front(); q.pop(); for(int i=0;i<4;i++) { nx=tmp.x+step[i][0]; ny=tmp.y+step[i][1]; if(nx<1 || nx>N || ny<1 || ny>N) continue; if(map[tmp.x][tmp.y]+map[nx][ny]!=1) continue; if(ans[nx][ny]) continue; res++; q.push((Point){nx,ny}); ps.push((Point){nx,ny}); ans[nx][ny]=1; } } while(ps.size())//zhe yi bu so shuai; { tmp=ps.front(); ps.pop(); ans[tmp.x][tmp.y]=res; } } int main() { freopen("maze01.in","r",stdin); freopen("maze01.out","w",stdout); scanf("%d %d\n",&N,&M);char c; for(int i=1;i<=N;i++) { for(int j=1;j<=N;j++) { c=0; while(c!=‘0‘ && c!=‘1‘) scanf("%c",&c); map[i][j]=c-‘0‘; } } for(int i=1;i<=N;i++) { for(int j=1;j<=N;j++) { if(ans[i][j]) continue; ps.push((Point){i,j}); bfs(i,j); } } for(int i=1;i<=M;i++) { scanf("%d%d\n",&qx,&qy); printf("%d\n",ans[qx][qy]); } return 0; }
luogu cogs P1141 01迷宮