标签:des style blog http io color os ar java
8 8 3 3 3 4 5 6 6 2 1 7 7
11 96
BFS搜到最短路径。。然后BFS怒搜路径数
#include <iostream> #include <algorithm> #include <cstring> #include <cstdio> #include <cctype> #include <cstdlib> #include <set> #include <map> #include <vector> #include <string> #include <queue> #include <stack> #include <cmath> #define LL long long using namespace std; const int INF = 0x3f3f3f3f; struct node { int x,y,step; }; int sb,ans,n,m,sx,sy,ex,ey,dir[4][2]={{0,1},{0,-1},{1,0},{-1,0}}; bool ma[110][110],vis[110][110]; int bfs() { memset(vis,0,sizeof(vis)); queue <node> Q; node now,next; now.x=sx;now.y=sy;now.step=0; vis[sx][sy]=1; Q.push(now); while(!Q.empty()) { now=Q.front();Q.pop(); if(now.x==ex&&now.y==ey) return now.step; for(int i=0;i<4;i++) { next.x=now.x+dir[i][0]; next.y=now.y+dir[i][1]; if(next.x>=1&&next.x<=n&&next.y>=1&&next.y<=m&&!vis[next.x][next.y]&&ma[next.x][next.y]) { vis[next.x][next.y]=1; next.step=now.step+1; Q.push(next); } } } return -1; } void dfs(int x,int y,int step) { if(step>sb) return ; if(x==ex&&y==ey&&step==sb) { ++ans; return ; } for(int i=0;i<4;i++) { int tx=x+dir[i][0]; int ty=y+dir[i][1]; if(tx>=1&&tx<=n&&ty>=1&&ty<=m&&!vis[tx][ty]&&ma[tx][ty]) { vis[tx][ty]=1; dfs(tx,ty,step+1); vis[tx][ty]=0; } } } int main() { int k,u,v; while(~scanf("%d%d%d",&n,&m,&k)) { memset(ma,1,sizeof(ma)); while(k--) { scanf("%d%d",&u,&v); ma[u][v]=0; } scanf("%d%d%d%d",&sx,&sy,&ex,&ey); sb=bfs(); if(sb==-1) { puts("No Solution!"); continue; } printf("%d\n",sb); memset(vis,0,sizeof(vis)); ans=0;vis[sx][sy]=1; dfs(sx,sy,0); printf("%d\n",ans); } return 0; }
标签:des style blog http io color os ar java
原文地址:http://blog.csdn.net/qq_16255321/article/details/40689681