Another Eight Puzzle
following 8 circles with digits 1~8,with each number exactly once .
Conntcted circles cannot be filled with two consecutive
numbers.
There are 17 pairs of connected cicles:
A-B , A-C, A-D
B-C, B-E, B-F
C-D, C-E, C-F, C-G
D-F, D-G
E-F, E-H
F-G, F-H
G-H
Eight Puzzle" title="Another Eight Puzzle">Filling G with 1 and D with 2 (or G with 2 and D with 1) is illegal
since G and D are connected and 1 and 2 are consecutive .However
,filling A with 8 and B with 1 is legal since 8 and 1 are not
consecutive .
In this problems,some circles are already filled,your tast is to
fill the remaining circles to obtain a solution (if
possivle).
contains a single integer T(1≤T≤10),the number of test cases. Each
test case is a single line containing 8 integers 0~8,the numbers in
circle A~H.0 indicates an empty circle.
case ,print the case number and the solution in the same format as
the input . if there is no solution ,print “No answer”.If there
more than one solution,print “Not unique”.
0 0
0 0
0 0
1 4 5 8 6 2
unique
answer
A-D
B-A, B-C,
B-E, B-F
C-A, C-B, C-D, C-F,
C-E,C-G
D-A, D-C, D-F, D-G
E-B, E-C, E-F, E-H
F-C, F-D, F-G, F-H, F-E,
F-B
G-D, G-C, G-F, G-H
H-E, H-F, H-G
A=1 B=2 C=3 D=4 E=5 F=6 G=7
H=8
#include
#include
#include
#include
#define maxn 10
using namespace std;
int pos[maxn],t,visit[maxn],ans=0,mark[maxn],p[maxn];
bool conect(int x,int y)
{
if (x>y)
{int t=x; x=y; y=t;}
switch
(x)
{
case 1:return y==2 || y==3 || y==4;
case 2:return y==3 || y==5 || y==6;
case 3:return y==4 || y==5 || y==6 || y==7;
case 4:return y==6 || y==7;
case 5:return y==6 || y==8;
case 6:return y==7 || y==8;
case 7:return y==8;
}
}
bool ok(int p)
{
int i;
for
(i=1;i<=8;i++)
if ((conect(i,p) && abs(pos[p]-pos[i])==1) &&
pos[i]!=0) return 0;
return
1;
}
void dfs(int cur)
{
//cout<<cur<<" ";
if(ans>1)
return ;//剪枝大于2了就不需要在搜了
//cout<<"cur="<<cur<<endl;
while(cur<=8&&pos[cur]) cur++;//把0空过去
if(cur>8)
{
ans++;
if(ans==1)//因为只有ans=1时才需要输出
memcpy(p,pos,sizeof(pos));//将整个数组转移过来
return;
}
for(int
i=1;i<=8;i++) if(!visit[i])
{
//cout<<cur<<endl;
//cout<<i<<" ";
visit[i]=1;
pos[cur]=i;
if(ok(cur))//相邻的不是相邻的数
dfs(cur+1);
pos[cur]=0;//原来这里就是零的
visit[i]=0;//释放标记,用于下一次搜索;
if(ans>1)
return;
}
}
int main()
{
//freopen("in.txt", "r", stdin);
int
flag=0;
scanf("%d",&t);
for(int
i=1;i<=t;i++)
{
ans=0;
memset(pos,0,sizeof(pos));
memset(visit,0,sizeof(visit));
for(int j=1;j<=8;j++)
{
scanf("%d",&pos[j]);
visit[pos[j]]=1;
}
dfs(1);
//cout<<"ans="<<ans<<endl;
printf("Case %d: ",i);
if(!ans)
printf("No answer");
else if(ans==1)
for(int i=1;i<=8;i++)
printf(i==1?"%d":" %d",p[i]);
else
printf("Not unique");
printf("\n");
}
}
Another Eight Puzzle的更多相关文章
- Puzzle 面向服务/切面(AOP/IOC)开发框架 For .Net
Puzzle 面向服务/切面AOP开发框架 For .Net AOP主要实现的目的是针对业务处理过程中的切面进行提取,它所面对的是处理过程中的某个步骤或阶段,以获得逻辑过程中各部分之间低耦合性的隔离效 ...
- HDU5456 Matches Puzzle Game(DP)
题目 Source http://acm.hdu.edu.cn/showproblem.php?pid=5456 Description As an exciting puzzle game for ...
- one recursive approach for 3, hdu 1016 (with an improved version) , permutations, N-Queens puzzle 分类: hdoj 2015-07-19 16:49 86人阅读 评论(0) 收藏
one recursive approach to solve hdu 1016, list all permutations, solve N-Queens puzzle. reference: t ...
- poj3678 Katu Puzzle 2-SAT
Katu Puzzle Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 6714 Accepted: 2472 Descr ...
- POJ1651Multiplication Puzzle[区间DP]
Multiplication Puzzle Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 8737 Accepted: ...
- codeforce B Island Puzzle
B. Island Puzzle time limit per test 2 seconds memory limit per test 256 megabytes input standard in ...
- poj 1651 Multiplication Puzzle (区间dp)
题目链接:http://poj.org/problem?id=1651 Description The multiplication puzzle is played with a row of ca ...
- Ignatius's puzzle
Ignatius's puzzle Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others ...
- A hard puzzle
A hard puzzle Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Tot ...
- hdu 1097 A hard puzzle
Problem Description lcy gives a hard puzzle to feng5166,lwg,JGShining and Ignatius: gave a and b,how ...
随机推荐
- html tip实现
一.介绍before/after CSS中的before和after伪类选择器早在CSS2时就被引入,改属性被所有主流浏览器所支持了.before和after顾名思义,分别指的是伪元素在元素前/后添加 ...
- JAVA 反射(1)
getDeclaredField是可以获取一个类的所有字段. getField只能获取类的public 字段.
- spring jar包
org.springframework.aop- 3.0.0.RELEASE--------------------Spring的面向切面编程,提供AOP(面向切面编程)实现 org.springfr ...
- Painter's Problem poj1681 高斯消元法
Painter's Problem Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 4420 Accepted: 2143 ...
- hdu2222 ac自动机入门
Keywords Search Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) ...
- 华为olt ma5680t常用命令详解
进入待替换的故障ONU所注册的单板 interface epon 0/1 //此处可以通过查看PON口下设备状态来获取需要替换的ONU ID.假设故障设备位于2端口,ID为6 ont ...
- DevOps之网络
唠叨话 关于德语噢屁事的知识点,仅提供专业性的精华汇总,具体知识点细节,参考教程网址,如需帮助,请留言. <网络(Network)> 关于网络的网络架构和网络模型:知识与技能的层次(知道. ...
- Object类—复写equals方法,hashCode方法,toString方法
Object:所有类的根类. Object是不断抽取而来,具备着所有对象都具备的共性内容. class Person extends Object { private int age; Person( ...
- Angular4 后台管理系统搭建(10) - 做一个通用的可跨域上传文件的组件
写的很慢,不知不觉这是第十篇了.但是我其他事情太多,只能抽空写下.现在angular4或angular2流行的上传方式是ng2-file-upload.它的功能很强大.但是我没有配置成可以跨域上传的. ...
- 解决由于VNC日志导致服务器磁盘100%
今天通过SSH连接服务器看到磁盘直接100%了.于是通过 sudo du -h --max-depth=1 发现某个用户下面占用了100个G.于是切换进去看了一下.发现VNC的log占满了整个磁盘.然 ...