博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ 2337 Catenyms(有向欧拉图:输出欧拉路径)
阅读量:5161 次
发布时间:2019-06-13

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

题目链接>>>>>>

 

题目大意:

给出一些字符串,问能否将这些字符串  按照 词语接龙,首尾相接  的规则 使得每个字符串出现一次

如果可以 按字典序输出这个字符串序列

 

#include 
#include
#include
#include
#include
#include
#define M 1050 using namespace std;int n, top;struct edge { int to, vis, id; //to代表边的终点,id代表边的编号};vector
w[M];string str[M]; //原来还可以这样定义字符串数组int ans[M];int fa[29];int find(int x){ return x == fa[x] ? x : fa[x] = find(fa[x]);}void fleury(int loc){ for (int i = 0; i
> str[i]; sort(str, str + n); //根据字典序排序 edge edg; int start; for (int i = 0; i
= 0; i--) //要使输出的单词按字典序输出 { if (i == 0) cout << str[ans[i]] << endl; else cout << str[ans[i]] << "."; } } else cout << "***" << endl; } return 0;}

 

2018-04-07

转载于:https://www.cnblogs.com/00isok/p/8734550.html

你可能感兴趣的文章
[Java] Java record
查看>>
jQuery - 控制元素显示、隐藏、切换、滑动的方法
查看>>
postgresql学习文档
查看>>
Struts2返回JSON数据的具体应用范例
查看>>
js深度克隆对象、数组
查看>>
socket阻塞与非阻塞,同步与异步
查看>>
团队工作第二天
查看>>
System类
查看>>
tableView
查看>>
Happy Great BG-卡精度
查看>>
Xamarin Visual Studio不识别JDK路径
查看>>
菜鸟“抄程序”之道
查看>>
Ubuntu下关闭防火墙
查看>>
TCP/IP 邮件的原理
查看>>
原型设计工具
查看>>
windows下的C++ socket服务器(4)
查看>>
css3 2d转换3d转换以及动画的知识点汇总
查看>>
【Java】使用Eclipse进行远程调试,Linux下开启远程调试
查看>>
对Vue为什么不支持IE8的解释之一
查看>>
计算机改名导致数据库链接的诡异问题
查看>>