博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
习题 7-2 uva225(回溯)
阅读量:5904 次
发布时间:2019-06-19

本文共 2171 字,大约阅读时间需要 7 分钟。

题意:从(0.0)点出发,第一次走一步……第k次走k步,且每次必须转90度,不能走重复的点。求k次后回到出发点的所有情况。按最小字典序从小到大输出。

思路:

把所有坐标+220,保证其是正数,然后搜索。

 

#include 
#include
#include
#include
#include
#include
typedef long long ll;using namespace std;const int inf = 0x3f3f3f3f;int tx[100];int ty[100];int dir[4][2] = { {1,0},{0,1},{0,-1},{-1,0}};int vis[1000][1000];char dire[] = {"ensw"};int all;struct node{ int step; int x,y; int dir;};int n,k;int ans[200];bool judge(int i,node a) //判断是否能走{ int x = a.x+dir[i][0]*(a.step+1); int y = a.y+dir[i][1]*(a.step+1); if(i == 1 || i == 2) { for(int j = 0; j < k; j++) { if(tx[j] == x && ty[j] >= y && ty[j] <= a.y && i == 2) return true; if(tx[j] == x && ty[j] >= a.y && ty[j] <= y && i == 1) return true; } } if(i == 0 || i == 3) { for(int j = 0; j < k; j++) { if(ty[j] == y && tx[j] >= x && tx[j] <= a.x && i == 3) return true; if(ty[j] == y && tx[j] >= a.x && tx[j] <= x && i == 0) return true; } } return false;}void dfs(node a){ if(a.x == 220 && a.y == 220 && a.step == n) {// printf("%d\n",a.step);// for(int i = 0; i < a.step;i++)// printf("%d ",ans[i]);// printf("\n"); for(int i = 0; i < a.step; i++) { printf("%c",dire[ans[i]]); } printf("\n"); all++; return ; } if(a.step >= n) return; for(int i = 0; i < 4; i++) { if(i == 0 && (a.dir == 3||a.dir == 0))continue; if(i == 1 && (a.dir == 2||a.dir == 1))continue; if(i == 2 && (a.dir == 1||a.dir == 2))continue; if(i == 3 && (a.dir == 0||a.dir == 3))continue; if(judge(i,a)) continue; node tt = a; ans[a.step] = i; tt.x = a.x+dir[i][0]*(a.step+1); tt.y = a.y+dir[i][1]*(a.step+1); if(vis[tt.x][tt.y]) continue; vis[tt.x][tt.y] = 1; tt.dir = i; tt.step = a.step + 1; dfs(tt); vis[tt.x][tt.y] = 0; } return ;}int main(){ int cas = 1,T; int a,b; scanf("%d ",&T); while(T--) { scanf("%d %d ",&n,&k); memset(vis,0,sizeof(vis)); for(int i = 0; i < k; i++) { scanf("%d %d",&a,&b); tx[i] = a+220; ty[i] = b+220; } node cur; all = 0; cur.x = 220,cur.y = 220,cur.step = 0,cur.dir = -1; dfs(cur); printf("Found %d golygon(s).\n",all); printf("\n"); } return 0;}

  

转载于:https://www.cnblogs.com/Przz/p/5409702.html

你可能感兴趣的文章
面向对象思想(第一天)
查看>>
微信小程序 js逻辑
查看>>
linux 安装 sftp
查看>>
openStack queens
查看>>
(转)EOSIO开发(四)- nodeos、keosd与cleos
查看>>
MVC5+EF6 入门完整教程八
查看>>
Java 设计模式专栏
查看>>
常用Mysql或者PostGresql或者Greenplum的语句总结。
查看>>
工控随笔_12_西门子_WinCC的VBS脚本_03_变量类型
查看>>
使用ASP.NET Atlas SortBehavior实现客户端排序
查看>>
图像滤镜处理算法:灰度、黑白、底片、浮雕
查看>>
Office文档出错的几种原因与解决方法
查看>>
正则表达式 学习笔记1.1
查看>>
AssetBundle进阶内存优化(Unity 4.x)
查看>>
《从零开始学Swift》学习笔记(Day 40)——析构函数
查看>>
Exchange2003-2010迁移系列之十,Exchange证书攻略
查看>>
extmail集群的邮件负载均衡方案 [lvs dns postfix]
查看>>
更改UIView的背景
查看>>
Prometheus安装部署以及配置
查看>>
Web开发之-DOM操作对象
查看>>