博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu 2181 深搜
阅读量:5034 次
发布时间:2019-06-12

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

题意:十二面体有20个顶点,每个顶点和相邻3个顶点相连,问从一个顶点出发,每个顶点只走一遍,回到原点的走法。如果有多条,按字典序输出。

分析:将每个顶点的相邻点排序,然后简单深搜。。。

 

 

int a[21][3];int m, cnt;int p[21], b[21];void d(int i, int u){
//第i步为顶点u if(i==19){ FOR(j, 0, 3) if(a[u][j] == m){ printf("%d: ", ++cnt); FOE(k, 0, 20) printf(" %d", p[k]); printf("\n"); } return; } FOR(j, 0, 3){ int v = a[u][j]; if(b[v]) continue; b[v] = 1; p[i+1] = v; d(i+1, v); b[v] = 0; }}int main(){ #ifndef ONLINE_JUDGE freopen("in.txt","r",stdin); //freopen("out.txt","w",stdout); #endif FOE(i, 1, 20) { FOR(j, 0, 3) scanf("%d", &a[i][j]); sort(a[i], a[i]+3); } while(scanf("%d", &m), m){ memset(b, 0, sizeof b); cnt = 0; b[m] = 1; p[0] = m; p[20] = m; d(0, m); } return 0;}

 

转载于:https://www.cnblogs.com/ts65213/archive/2013/05/27/3101580.html

你可能感兴趣的文章
关于根据Build Platform或者OS 加载x86或者x64 dll的问题
查看>>
程序员高效开发的几个技巧
查看>>
hexo 搭建博客
查看>>
建造者模式(屌丝专用)
查看>>
Nginx + Tomcat 反向代理 如何在高效的在一台服务器部署多个站点
查看>>
酷狗的皮肤文件存放在哪
查看>>
C++的引用
查看>>
T-SQL查询进阶--深入浅出视图
查看>>
Android读取url图片保存及文件读取
查看>>
完整ASP.Net Excel导入
查看>>
循环队列的运用---求K阶斐波那契序列
查看>>
python itertools
查看>>
Linux内核调试技术——jprobe使用与实现
查看>>
http://lorempixel.com/ 可以快速产生假图
查看>>
编写一个函数isMerge,判断一个字符串str是否可以由其他两个字符串part1和part2“组合”而成...
查看>>
函数式编程与参数
查看>>
[Qt] this application failed to start because it could not find or load the Qt platform plugin
查看>>
文件操作
查看>>
CNN 笔记
查看>>
版本更新
查看>>