标签:mission img table dfs tar string describes time reg
Time Limit: 1000MS | Memory Limit: 65536K | |
Total Submissions: 44532 | Accepted: 15139 |
Description
Input
Output
Sample Input
3 1 1 2 3 4 3
Sample Output
Scenario #1: A1 Scenario #2: impossible Scenario #3: A1B3C1A2B4C2A3B1C3A4B2C4
分析:
朝8个方向进行的DFS搜索,主要的是要记录 路径,考虑到深搜的性质,故采用结构体,最后一次更新完成的路径即使最终的路径
这个表示位置的坐标的时候还有字母,字母表示位置是相当不方便的。所以先都采用数字 ,输出的时候再化为字母。
代码如下
#include <cstdio> #include <iostream> #include <cstring > using namespace std; #define INF 0x7fffffff typedef long long ll; int dir[8][2]={-2,-1,-2,1,-1,-2,-1,2,1,-2,1,2,2,-1,2,1}; int p,q; int map1[100][100]; int f,step; int vis[100][100]; int check(int x,int y) { if(x>=0&&x<p&&y>=0&&y<q&&!vis[x][y]) return 1; return 0; } struct node { int x; int y; }path[1000]; void dfs(int x,int y) { if(f==1) return ; path[step].x=x; path[step].y=y; if(step==p*q-1) { f=1; } int next_x; int next_y; for(int i=0;i<8;i++) { next_x=path[step].x+dir[i][1]; next_y=path[step].y+dir[i][0]; if(check(next_x,next_y)) { vis[next_x][next_y]=1; step++; dfs(next_x,next_y); step--; vis[next_x][next_y]=0; } } } int main() { int t; cin>>t; for(int k=1;k<=t;k++) { f=0; step=0; memset(map1,0,sizeof(map1)); cin>>p>>q; { std::ios::sync_with_stdio(false); } dfs(0,0); vis[0][0]=1; printf("Scenario #%d:\n",k); if(f==0)cout<<"impossible"; else { for(int i=0;i<p*q;i++) { printf("%c",‘A‘+path[i].y); printf("%d",path[i].x+1); } } cout<<endl; cout<<endl; } return 0; }
标签:mission img table dfs tar string describes time reg
原文地址:http://www.cnblogs.com/a249189046/p/6642438.html