UVA225-Golygons(dfs)
Problem UVA225-Golygons
Accept:307 Submit:3646
Time Limit: 3000 mSec
Problem Description
Imagine a country whose cities have all their streets laid out in a regular grid. Now suppose that a tourist with an obsession for geometry is planning expeditions to several such cities.
Starting each expedition from the central cross-roads of a city, the intersection labelled (0,0), our mathematical visitor wants to set off north, south, east or west, travel one block, and view the sights at the intersection (0,1) after going north, (0,-1) after going south, (1,0) after going east or (-1,0) after going west. Feeling ever more enthused by the regularity of the city, our mathematician would like to walk a longer segment before stopping next, going two blocks. What’s more, our visitor doesn’t want to carry on in the same direction as before, nor wishes to double back, so will make a 90o turn either left or right. The next segment should be three blocks, again followed by a right-angle turn, then four, five, and so on with ever-increasing lengths until finally, at the end of the day, our weary traveller returns to the starting point, (0,0).
The possibly self-intersecting figure described by these geometrical travels is called a golygon.
Unfortunately, our traveller will making these visits in the height of summer when road works will disrupt the stark regularity of the cities’ grids. At some intersections there will be impassable obstructions. Luckily, however, the country’s limited budget means there will never be more than 50 road works blocking the streets of any particular city. In an attempt to gain accountability to its citizens, the city publishes the plans of road works in advance. Our mathematician has obtained a copy of these plans and will ensure that no golygonal trips get mired in molten tar.
Write a program that constructs all possible golygons for a city.
Input
Since our tourist wants to visit several cities, the input file will begin with a line containing an integer specifying the number of cities to be visited.
For each city there will follow a line containing a positive integer not greater than 20 indicating the length of the longest edge of the golygon. That will be the length of the last edge which returns the traveler to (0,0). Following this on a new line will be an integer from 0 to 50 inclusive which indicates how many intersections are blocked. Then there will be this many pairs of integers, one pair per line, each pair indicating the x and y coordinates of one blockage.
Output
For each city in the input, construct all possible golygons. Each golygon must be represented by a sequence of characters from the set {n,s,e,w} on a line of its own. Following the list of golygons should be a line indicating how many solutions were found. This line should be formatted as shown in the example output. A blank line should appear following the output for each city.
Note: See on the right the diagram of the 1st City
Sample Input
Sample Ouput
wsenenws
Found 1 golygon(s).
Found 0 golygon(s).
题解:很明显的dfs搜索,剪枝也很粗暴,如果剩下的步数不足以回到原点就返回。由于坐标可能是负的,因此原点坐标要取成一个足够大的正值。
坑点:题目中没有说一个城市只能参观一次,但是实际上只能参观一次,需要vis数组。
#include <bits/stdc++.h> using namespace std; const int o = ,Max = ; int n,ans;
int gra[Max][Max];
int dx[] = {,,,-};
int dy[] = {,,-,};
bool vis[Max][Max];
char Direction[] = {'e','n','s','w'};
int sta[],num[] = {,}; //dir为0代表水平方向,为1代表垂直方向 void dfs(int x,int y,int pos,int dir){
//printf("pos:%d x:%d y:%d\n",pos,x,y);
if(pos == n+){
if(x==o && y==o){
ans++;
printf("%c",Direction[sta[]]);
for(int i = ;i <= n;i++){
printf("%c",Direction[sta[i]]);
}
printf("\n");
}
return;
} int step = ;
for(int i = pos;i <= n;i++) step += i;
if(abs(x-o)+abs(y-o) > step) return; if(dir == -){
for(int i = ;i < ;i++){
int xx = x+pos*dx[i],yy = y+pos*dy[i];
if(vis[xx][yy]) continue;
int k;
if(<=i && i<){
for(k = min(y,yy);k <= max(y,yy);k++){
if(gra[xx][k]) break;
}
if(k == max(y,yy)+){
sta[pos] = i;
vis[xx][yy] = true;
dfs(xx,yy,pos+,);
vis[xx][yy] = false;
}
}
else{
for(k = min(x,xx);k <= max(x,xx);k++){
if(gra[k][yy]) break;
}
if(k == max(x,xx)+){
sta[pos] = i;
vis[xx][yy] = true;
dfs(xx,yy,pos+,);
vis[xx][yy] = false;
}
}
}
}
else{
if(dir==){
for(int i = ;i < ;i++){
int xx = x+pos*dx[i],yy = y+pos*dy[i];
if(vis[xx][yy]) continue;
int k;
for(k = min(y,yy);k <= max(y,yy);k++){
if(gra[xx][k]) break;
}
if(k == max(y,yy)+){
sta[pos] = i;
vis[xx][yy] = true;
dfs(xx,yy,pos+,);
vis[xx][yy] = false;
}
}
}
else if(dir==){
for(int j = ;j < ;j++){
int i = num[j];
int xx = x+pos*dx[i],yy = y+pos*dy[i];
if(vis[xx][yy]) continue;
int k;
for(k = min(x,xx);k <= max(x,xx);k++){
if(gra[k][yy]) break;
}
if(k == max(x,xx)+){
sta[pos] = i;
vis[xx][yy] = true;
dfs(xx,yy,pos+,);
vis[xx][yy] = false;
}
}
}
}
} int main()
{
#ifdef GEH
freopen("helloworld.01.inp","r",stdin);
#endif
int iCase;
scanf("%d",&iCase);
while(iCase--){
ans = ;
memset(vis,false,sizeof(vis));
memset(gra,,sizeof(gra));
//vis[o][o] = true;
int k,x,y;
scanf("%d%d",&n,&k);
for(int i = ;i < k;i++){
scanf("%d%d",&x,&y);
if(abs(x)>o || abs(y)>o) continue;
gra[o+x][o+y] = ;
}
dfs(o,o,,-);
printf("Found %d golygon(s).\n\n",ans);
}
return ;
}
UVA225-Golygons(dfs)的更多相关文章
- UVA225 Golygons 黄金图形(dfs+回溯)
剪枝1:在同一个维度上的点具有相同的奇偶性,如果奇数数量只有奇数个那么一定不能返回原点. 剪枝2:当前位置怎么也走不回去. 3:沿途判断障碍即可. 在oj上提交0.347s,最快的0.012s,应该有 ...
- UVa225,Golygons
刘儒家翻译的走出的图形可以自交,不知道大家是怎么理解的,反正我是认为这句话的意思是告诉我允许一个点访问多次 这样是WA的,n=15和n=16时多输出很多数据,应该是不允许自交,也就是不允许一个点访问多 ...
- 【习题 7-2 UVA-225】Golygons
[链接] 我是链接,点我呀:) [题意] 在这里输入题意 [题解] 暴力枚举每次走哪里就好. 用一个二维数组来判重.(数据里,要求不能经过一个点两次->但路径可以相交 然后再用一个flag数组, ...
- BZOJ 3083: 遥远的国度 [树链剖分 DFS序 LCA]
3083: 遥远的国度 Time Limit: 10 Sec Memory Limit: 1280 MBSubmit: 3127 Solved: 795[Submit][Status][Discu ...
- BZOJ 1103: [POI2007]大都市meg [DFS序 树状数组]
1103: [POI2007]大都市meg Time Limit: 10 Sec Memory Limit: 162 MBSubmit: 2221 Solved: 1179[Submit][Sta ...
- BZOJ 4196: [Noi2015]软件包管理器 [树链剖分 DFS序]
4196: [Noi2015]软件包管理器 Time Limit: 10 Sec Memory Limit: 512 MBSubmit: 1352 Solved: 780[Submit][Stat ...
- 图的遍历(搜索)算法(深度优先算法DFS和广度优先算法BFS)
图的遍历的定义: 从图的某个顶点出发访问遍图中所有顶点,且每个顶点仅被访问一次.(连通图与非连通图) 深度优先遍历(DFS): 1.访问指定的起始顶点: 2.若当前访问的顶点的邻接顶点有未被访问的,则 ...
- BZOJ 2434: [Noi2011]阿狸的打字机 [AC自动机 Fail树 树状数组 DFS序]
2434: [Noi2011]阿狸的打字机 Time Limit: 10 Sec Memory Limit: 256 MBSubmit: 2545 Solved: 1419[Submit][Sta ...
- POJ_2386 Lake Counting (dfs 错了一个负号找了一上午)
来之不易的2017第一发ac http://poj.org/problem?id=2386 Lake Counting Time Limit: 1000MS Memory Limit: 65536 ...
随机推荐
- Java8 Optional类
概述 到目前为止,著名的NullPointerException是导致Java应用程序失败的最常见原因.过去,为了解决空指针异常,Google公司著名的Guava项目引入了Optional类,Guav ...
- Github被微软收购,这里整理了16个替代品
微软斥资75亿美元收购以后,鉴于微软和开源竞争的历史,很多开发者都感到惊恐.毕竟,互联网上最大的一块可以自由的净土被微软染指,宝宝不开森.如果你真的担心微软会对Github有所动作,那么这里我列举了1 ...
- webpack安装
npm install -g webpack webpack-dev-server
- 2018-08-29 浏览器插件实现GitHub代码翻译原型演示
此原型源自此想法: 中文化源码. 考虑到IDE插件工作量较大, 且与IDE绑定. 在代码转换工具的各种实现中, 综合考虑实用+易用+长远改进潜力, 浏览器插件似乎较有优势. 于是用最快捷的方式实现这一 ...
- python 标准类库-并行执行之subprocess-子进程管理
标准类库-并行执行之subprocess-子进程管理 by:授客QQ:1033553122 1.使用subprocess模块 以下函数是调用子进程的推荐方法,所有使用场景它们都能处理.也可用Popen ...
- Android 针对单个Activity设置状态栏颜色
代码如下: if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {//因为不是所有的系统都可以设置颜色的,在4.4以下就不可以. ...
- Android为TV端助力 清除本应用里的各种数据的方法
public class DataCleanManager { /** * * 清除本应用内部缓存(/data/data/com.xxx.xxx/cache) * * * * @param conte ...
- leetcode-977. 有序数组的平方
leetcode-977. 有序数组的平方 (来自 120周赛) 题意 给定一个按非递减顺序排序的整数数组 A,返回每个数字的平方组成的新数组,要求也按非递减顺序排序. 示例 1: 输入:[-4,-1 ...
- Linux 中提高的 SSH 的安全性
SSH 是远程登录 Linux 服务器的最常见的方式.且 SSH 登录的时候要验证的,相对来讲会比较安全.那只是相对,下面会介绍一些方式提高 SSH 的安全性 SSH 的验证 而SSH 登录时有两种验 ...
- ssh框架总结之action接收参数的三种方式
页面将参数传递给action的三种方式 一是通过属性传值: 将页面和action的的属性值保持一致,在action上写上该属性的set和get方法,这样在页面提交参数的时候,action就会调用set ...