uva225 回溯剪枝
这道题要剪枝,不然会超时,还有就是每次参加过的城市下次不能再参观,不然会WA。
对于障碍物的坐标我用了两种方法,第一种就是直接用STL里面的set,对于判断是否访问过直接用的count,用时960ms;当我把集合换成数组,200ms通过。
用set的AC代码:
#include<cstring>
#include<cstdio>
#include<cmath>
#include<set>
#include<algorithm>
using namespace std;
const int maxn=300;
int dx[]={1,0,0,-1,5};
int dy[]={0,1,-1,0,5}; //east,north,south,west
char dir[]="ensw";
int vis[maxn][maxn];
int n,cnt;
struct node{
int x,y;
node(int x=0,int y=0):x(x),y(y){}
bool operator < (const node &p) const{
return x>p.x||(x==p.x&&y>p.y);
}
};
set<node>u;
void dfs(int *a,int cur,int d,node pos){
if(cur==n&&pos.x==150&&pos.y==150){
cnt++;
for(int i=0;i<n;++i) printf("%c",dir[a[i]]);
printf("\n");
return;
}
if(cur>=n) return;
if((abs(pos.x-150)+abs(pos.y-150))>((n-cur)*(n+cur+1)/2)) return; //cut
for(int i=0;i<4;++i){
if(dx[i]==dx[d]||dy[i]==dy[d]) continue;
int newx=pos.x+(cur+1)*dx[i],newy=pos.y+(cur+1)*dy[i];
if(vis[newx][newy]) continue; //已经旅游过
int flag=0,c,p;
if(newx==pos.x){
c=min(newy,pos.y),p=max(newy,pos.y);
for(int k=c;k<=p;++k){
node newc(newx,k);
if(u.count(newc)) {flag=1;break;}
}
}
else if(newy==pos.y){
c=min(newx,pos.x),p=max(newx,pos.x);
for(int k=c;k<=p;++k){
node newc(k,newy);
if(u.count(newc)) {flag=1;break;}
}
}
if(flag) continue;
a[cur]=i;
vis[newx][newy]=1;
dfs(a,cur+1,i,node(newx,newy));
vis[newx][newy]=0;
}
}
int main(){
int T;
scanf("%d",&T);
while(T--){
memset(vis,0,sizeof(vis));
int k;
scanf("%d%d",&n,&k);
int x,y;
for(int i=0;i<k;++i){
scanf("%d%d",&x,&y);
u.insert(node(x+150,y+150)); //障碍物坐标保存
}
cnt=0;
int a[25];
dfs(a,0,4,node(150,150));
printf("Found %d golygon(s).\n\n",cnt);
u.clear();
}
return 0;
}
用数组的AC代码:
#include<cstring>
#include<cstdio>
#include<cmath>
#include<algorithm>
using namespace std;
const int maxn=300;
int dx[]={1,0,0,-1,5};
int dy[]={0,1,-1,0,5}; //east,north,south,west
char dir[]="ensw";
int vis[maxn][maxn],def[maxn][maxn];
int n,cnt;
struct node{
int x,y;
node(int x=0,int y=0):x(x),y(y){}
bool operator < (const node &p) const{
return x>p.x||(x==p.x&&y>p.y);
}
};
void dfs(int *a,int cur,int d,node pos){
if(cur==n&&pos.x==150&&pos.y==150){
cnt++;
for(int i=0;i<n;++i) printf("%c",dir[a[i]]);
printf("\n");
return;
}
if(cur>=n) return;
if((abs(pos.x-150)+abs(pos.y-150))>((n-cur)*(n+cur+1)/2)) return; //cut
for(int i=0;i<4;++i){
if(dx[i]==dx[d]||dy[i]==dy[d]) continue;
int newx=pos.x+(cur+1)*dx[i],newy=pos.y+(cur+1)*dy[i];
if(vis[newx][newy]) continue; //已经旅游过
int flag=0,c,p;
if(newx==pos.x){
c=min(newy,pos.y),p=max(newy,pos.y);
for(int k=c;k<=p;++k){
node newc(newx,k);
if(def[newx][k]) {flag=1;break;}
}
}
else if(newy==pos.y){
c=min(newx,pos.x),p=max(newx,pos.x);
for(int k=c;k<=p;++k){
node newc(k,newy);
if(def[k][newy]) {flag=1;break;}
}
}
if(flag) continue;
a[cur]=i;
vis[newx][newy]=1;
dfs(a,cur+1,i,node(newx,newy));
vis[newx][newy]=0;
}
}
int main(){
int T;
scanf("%d",&T);
while(T--){
memset(vis,0,sizeof(vis));
memset(def,0,sizeof(def));
int k;
scanf("%d%d",&n,&k);
int x,y;
for(int i=0;i<k;++i){
scanf("%d%d",&x,&y);
def[x+150][y+150]=1;
}
cnt=0;
int a[25];
dfs(a,0,4,node(150,150));
printf("Found %d golygon(s).\n\n",cnt);
}
return 0;
}
如有不当之处欢迎指出!
uva225 回溯剪枝的更多相关文章
- HDU 5113 Black And White 回溯+剪枝
题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=5113 Black And White Time Limit: 2000/2000 MS (Java/ ...
- HDU 2553 N皇后问题(回溯 + 剪枝)
本文链接:http://i.cnblogs.com/EditPosts.aspx?postid=5398797 题意: 在N*N(N <= 10)的方格棋盘放置了N个皇后,使得它们不相互攻击(即 ...
- HDU1010 Tempter of the Bone(回溯 + 剪枝)
本文链接:http://i.cnblogs.com/EditPosts.aspx?postid=5398734 题意: 输入一个 N * M的迷宫,这个迷宫里'S'代表小狗的位置,'X'代表陷阱,‘D ...
- HDU1016 Prime Ring Problem (回溯 + 剪枝)
本文链接:http://www.cnblogs.com/Ash-ly/p/5398684.html 题意: 给你一个数字N(N <= 20),要求你把这N个数组成一个环,环内的数字不能重复,左右 ...
- 回溯剪枝,dfs,bfs
dfs: 给定一个整数n,将数字1~n排成一排,将会有很多种排列方法. 现在,请你按照字典序将所有的排列方法输出. 输入格式 共一行,包含一个整数n. 输出格式 按字典序输出所有排列方案,每个方案占一 ...
- [算法专题] 深度优先搜索&回溯剪枝
1. Palindrome Partitioning https://leetcode.com/problems/palindrome-partitioning/ Given a string s, ...
- TZOJ 1221 Tempter of the Bone(回溯+剪枝)
描述 The doggie found a bone in an ancient maze, which fascinated him a lot. However, when he picked i ...
- UVa 225 黄金图形(回溯+剪枝)
https://vjudge.net/problem/UVA-225 题意:平面上有k个障碍点,从(0,0)出发,第一次走1个单位,第二次走2个单位,...第n次走n个单位,最后恰好回到(n,n).每 ...
- Leetcode题目39.组合总和(回溯+剪枝-中等)
题目描述: 给定一个无重复元素的数组 candidates 和一个目标数 target ,找出 candidates 中所有可以使数字和为 target 的组合. candidates 中的数字可以无 ...
随机推荐
- BSA Network Shell系列-runcmd/runscript命令
runcmd和runscript ## 1 功能概述 runcmd/runscript:runcmd在一台或多台机器执行Network Shell命令(单个命令),而runscript执行的是脚本,二 ...
- 华硕笔记本电脑Win10改Win7设置U盘启动
华硕笔记本电脑Win10改Win7设置U盘启动 尝试开机按ESC选择前面没有UEFI项的USB启动: 1,在BIOS设置里advanced菜单,把 Lgeacy USB support选择为enabl ...
- bzoj 4562 [Haoi2016]食物链
4562: [Haoi2016]食物链 Time Limit: 10 Sec Memory Limit: 128 MB Description 如图所示为某生态系统的食物网示意图,据图回答第1小题 ...
- MonogoDB 查询小结
MonogoDB是一种NoSQL数据库 优点: 1.数据的存储以json的文档进行存储(面向文档存储) 2.聚合框架查询速度快 3.高效存储二进制大对象 缺点: 1.不支持事务 2.文件存储空间占用过 ...
- PLSQL Developer软件使用大全
PLSQL Developer软件使用大全 第一章 PLSQL Developer特性 PL/SQL Developer是一个集成开发环境,专门面向Oracle数据库存储程序单元的开发.如今,有越来越 ...
- Spring-shiro源码陶冶-DelegatingFilterProxy和ShiroFilterFactoryBean
阅读源码有助于陶冶情操,本文旨在简单的分析shiro在Spring中的使用 简单介绍 Shiro是一个强大易用的Java安全框架,提供了认证.授权.加密和会话管理等功能 web.xml配置Shiro环 ...
- MySQL索引之B+树
MySQL索引大都存储在B+树中,除此还有R树和hash索引.B+树的基础还是B树. B树由2部分组成,节点和索引.下面将构建一个B树,每个节点存2个数据,每个节点有前,中,后三个索引.插入数字的顺序 ...
- Java设计模式——代理模式
public interface People { public void work(); } public class RealPeople implements People { public v ...
- NOIP2016提高组初赛(C++语言)试题 个人的胡乱分析
最近在做历年的初赛题,那我捡几道比较有代表性的题说一下好了 原题可以在这里看:https://wenku.baidu.com/view/10c0eb7ce53a580217fcfede.html?fr ...
- POJ 1625 Censored! [AC自动机 高精度]
Censored! Time Limit: 5000MS Memory Limit: 10000K Total Submissions: 9793 Accepted: 2686 Descrip ...