标签:
Time Limit: 1000MS | Memory Limit: 65536K | |
Total Submissions: 35868 | Accepted: 12227 |
Description
Input
Output
Sample Input
3 1 1 2 3 4 3
Sample Output
Scenario #1: A1 Scenario #2: impossible Scenario #3: A1B3C1A2B4C2A3B1C3A4B2C4
Source
搞清楚一个字典序就行了,其余的很简单。这一题的字典序:就是先按列排序,较小的在前。然后按行排序,也是较小的在前。 我的排序是这样的: int diri[8]={-1,1,-2,2,-2,2,-1,1}; int dirj[8]={-2,-2,-1,-1,1,1,2,2}; |
大意很明了,就是找到一个路径让马走完所有的点,不重复不遗漏;思路很容易找到,直接用DFS搜索标记并回溯,一个点一个点作为起点去试;找到后停止;
#include<stdio.h> int dir[8][2]={-2,-1,-2,1,-1,-2,-1,2,1,-2,1,2,2,-1,2,1}; //记录方向 int g,a,b;//g用来记录是否找到解,找到后不再搜索 int vist[26][26],path[26][2]; void find(int i,int j,int k)//i,j是要走的格子,k记录已经走过的步数 { if(k==a*b)//走完了 { for(int i=0;i<k;i++) printf("%c%d",path[i][0]+‘A‘,path[i][1]+1); printf("\n"); g=1; } else for(int x=0;x<8;x++)//8个方向依次搜索 { int n=i+dir[x][0]; int m=j+dir[x][1]; if(n>=0&&n<b&&m>=0&&m<a&&!vist[n][m]&&!g) { vist[n][m]=1;//标记已走 path[k][0]=n,path[k][1]=m; find(n,m,k+1); vist[n][m]=0;//清除标记 } } } int main() { int n; scanf("%d",&n); for(int m=0;m<n;m++) { g=0; scanf("%d %d",&a,&b); for(int i=0;i<a;i++)//一个点一个点的尝试 for(int j=0;j<b;j++) vist[i][j]=0; vist[0][0]=1; path[0][0]=0,path[0][1]=0; printf("Scenario #%d:\n",m+1); find(0,0,1); if(!g) printf("impossible\n"); printf("\n"); } return 0; }
#include<stdio.h> #include<string.h> #include<iostream> #include<algorithm> using namespace std; const int maxn=30; bool vis[maxn][maxn]; int path[100][2]; int n,m; int next[8][2]={-2,-1,-2,1,-1,-2,-1,2,1,-2,1,2,2,-1,2,1}; bool flag; void dfs(int x,int y,int step){ if(step==m*n){ flag=true; for(int i=0;i<step;i++){ printf("%c%d",path[i][1]+‘A‘-1,path[i][0]); } printf("\n"); } else for(int k=0;k<8;k++){ int tx=x+next[k][1]; int ty=y+next[k][0]; if(tx>=1&&tx<=n&&ty>=1&&ty<=m&&!vis[tx][ty]&&!flag){ vis[tx][ty]=true; path[step][0]=tx; path[step][1]=ty; dfs(tx,ty,step+1); vis[tx][ty]=false; } } } int main(){ int t; scanf("%d",&t); int Case=0; while(t--){ Case++; memset(vis,false,sizeof(vis)); memset(path,0,sizeof(path)); scanf("%d%d",&n,&m); flag=false; vis[1][1]=true; path[0][0]=1; path[0][1]=1; printf("Scenario #%d:\n",Case); dfs(1,1,1); if(!flag) printf("impossible\n"); printf("\n"); } return 0; }
大意很明了,就是找到一个路径让马走完所有的点,不重复不遗漏;思路很容易找到,直接用DFS搜索标记并回溯,一个点一个点作为起点去试;找到后停止;
poj2488 A Knight's Journey裸dfs
标签:
原文地址:http://www.cnblogs.com/13224ACMer/p/4734258.html