【题目链接】:http://codeforces.com/problemset/problem/508/D

【题意】



给你一个字符的所有连续3个的子串;

让你复原出原串;

(包含小写、大写字母以及数字);

【题解】



相当于给你n条边;

每条边的两端;

一个点是由s[0]s[1]组成的;

另一端是s[1]s[2]组成的;

(用map很容易做hash..)

然后让你求一个欧拉通路;

即经过所有的边仅一次的路径(一笔画);

有向图;

可以先算出每个点的入度和出度;

设入度和出度的差的点数为1的个数为cnt;

则只有当cnt为2或cnt为0的时候有解;

当cnt==2时,其中出度-入度==1的点作为起点,出度-入度==-1的点作终点;

当cnt==0时,随便取个点当起点;

然后做fleury算法就好;

(求出来的是逆序的,倒一下就好)

讲得比较好的

↓↓







看了上面的分析;

可以知道;

在搜一个点的时候,往前走的同时删边;

然后一条路走到黑;

把中间没有出度的点输出就好(倒序的);

然后对于中间还有出度的点再一条道走到黑就好(肯定能回来的);

然后重复上述步骤;

得到倒序的欧拉路径;



【Number Of WA】



0



【完整代码】

#include <bits/stdc++.h>
using namespace std;
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
#define LL long long
#define rep1(i,a,b) for (int i = a;i <= b;i++)
#define rep2(i,a,b) for (int i = a;i >= b;i--)
#define mp make_pair
#define pb push_back
#define fi first
#define se second
#define ms(x,y) memset(x,y,sizeof x)
#define Open() freopen("F:\\rush.txt","r",stdin)
#define Close() ios::sync_with_stdio(0),cin.tie(0) typedef pair<int,int> pii;
typedef pair<LL,LL> pll; const int dx[9] = {0,1,-1,0,0,-1,-1,1,1};
const int dy[9] = {0,0,0,-1,1,-1,1,-1,1};
const double pi = acos(-1.0);
const int N = 2e5+100; int n,tot,in[N*2],out[N*2],f[N*2],s,t;
char S[4];
map <string,int> dic;
string is[N*2];
vector <int> G[N*2];
stack <int> sta;
string ans=""; int ff(int x)
{
if (f[x]!=x)
return f[x] = ff(f[x]);
else
return x;
} void wujie()
{
cout <<"NO"<<endl;
exit(0);
} void dfs(int x)
{
while (G[x].size())
{
//cout << x << endl;
sta.push(x);
int y = G[x][G[x].size()-1];
G[x].pop_back();
x = y;
}
sta.push(x);
} void oula(int s)
{
sta.push(s);
int flag = 0;
while (!sta.empty())
{
int x = sta.top();
int bridge = (G[x].size()==0);
sta.pop();
if (!bridge)
{
dfs(x);
}
else
{
if (!flag)
{
ans+=is[x][1];
ans+=is[x][0];
flag = 1;
}
else
ans+=is[x][0];
}
}
} int main()
{
//Open();
Close();//scanf,puts,printf not use
//init??????
cin >> n;
string s1,s2;
rep1(i,1,2*n)
f[i] = i;
rep1(i,1,n)
{
cin >> S;
s1 = S[0];
s1+=S[1];
s2 = S[1];
s2+=S[2];
if (dic[s1]==0)
tot++,dic[s1] = tot,is[tot] = s1;
if (dic[s2]==0)
tot++,dic[s2] = tot,is[tot] = s2;
int x = dic[s1],y = dic[s2];
in[y]++,out[x]++;
G[x].pb(y);
int r1 = ff(x),r2 = ff(y);
if (r1!=r2)
f[r1] = r2;
}
n = tot;
int root = ff(1);
rep1(i,1,tot)
if (ff(i)!=root)
wujie();
int cnt = 0;
rep1(i,1,n)
{
if (in[i]==out[i]) continue;
cnt++;
if (in[i]-out[i]==-1)
s = i;
else
if (in[i]-out[i]==1)
t = i;
else
wujie();
}
//cout << tot <<endl;
//cout <<is[1]<<endl;
//cout <<is[2]<<endl;
//cout <<is[3]<<endl;
//cout <<is[4]<<endl;
//cout <<"s="<<s<<' '<<"t="<<t<<endl;
//return 0;
if ( (cnt==2 && s!=0 && t!=0) || (cnt==0))
{
cout <<"YES"<<endl;
if (cnt==0) s = 1;
oula(s);
reverse(ans.begin(),ans.end());
cout << ans << endl;
}
else
wujie();
return 0;
}

【codeforces 508D】Tanya and Password的更多相关文章

  1. 【codeforces 761C】Dasha and Password(动态规划做法)

    time limit per test2 seconds memory limit per test256 megabytes inputstandard input outputstandard o ...

  2. 【codeforces 761C】Dasha and Password(贪心+枚举做法)

    time limit per test2 seconds memory limit per test256 megabytes inputstandard input outputstandard o ...

  3. 【codeforces 508D】The Maths lecture

    [题目链接]:http://codeforces.com/problemset/problem/507/D [题意] 让你找符合这样数字的数的个数: 1.有n个数码 2.某个后缀%k的值为0 3.大于 ...

  4. 【codeforces 415D】Mashmokh and ACM(普通dp)

    [codeforces 415D]Mashmokh and ACM 题意:美丽数列定义:对于数列中的每一个i都满足:arr[i+1]%arr[i]==0 输入n,k(1<=n,k<=200 ...

  5. 【codeforces 707E】Garlands

    [题目链接]:http://codeforces.com/contest/707/problem/E [题意] 给你一个n*m的方阵; 里面有k个联通块; 这k个联通块,每个连通块里面都是灯; 给你q ...

  6. 【codeforces 707C】Pythagorean Triples

    [题目链接]:http://codeforces.com/contest/707/problem/C [题意] 给你一个数字n; 问你这个数字是不是某个三角形的一条边; 如果是让你输出另外两条边的大小 ...

  7. 【codeforces 709D】Recover the String

    [题目链接]:http://codeforces.com/problemset/problem/709/D [题意] 给你一个序列; 给出01子列和10子列和00子列以及11子列的个数; 然后让你输出 ...

  8. 【codeforces 709B】Checkpoints

    [题目链接]:http://codeforces.com/contest/709/problem/B [题意] 让你从起点开始走过n-1个点(至少n-1个) 问你最少走多远; [题解] 肯定不多走啊; ...

  9. 【codeforces 709C】Letters Cyclic Shift

    [题目链接]:http://codeforces.com/contest/709/problem/C [题意] 让你改变一个字符串的子集(连续的一段); ->这一段的每个字符的字母都变成之前的一 ...

随机推荐

  1. Jupyter NoteBook输出的图表太小看不清怎么办?

    如果使用的是matplotlib绘图,可以通过以下命令更改图片的大小: %matplotlib linline 如果是 plt.figure(figsize=(5,3)) #其中(5, 3)用于控制图 ...

  2. div+css对网页进行布局

    div+css对网页进行布局 首先在页面整体上进行div标签划分内容区域,然后再用css进行定位,最后再对相应的区域添加内容. 1.用div将页面划分 拿到网站页面图后,首先将分析页面分为哪几块,然后 ...

  3. List、Map、Set 三个接口,存取元素时,各有什么特点

    List与Set都是单列元素的集合,它们有一个功共同的父接口Collection. Set里面不允许有重复的元素, 存元素:add方法有一个boolean的返回值,当集合中没有某个元素,此时add方法 ...

  4. thinkphp 标签库

    内置的模板引擎除了支持普通变量的输出之外,更强大的地方在于标签库功能. 标签库类似于Java的Struts中的JSP标签库,每一个标签库是一个独立的标签库文件,标签库中的每一个标签完成某个功能,采用X ...

  5. 0914CSP-S模拟测试赛后总结

    9-16 16:03-upd:T3数据出锅,老师重测了,于是更了榜单. 名次并没有变化,但是和大佬们的差距变大了. 还是自己实力不行啊.最起码T3不是特别难想吧. 继续努力吧. 粘个榜:%%%二营长. ...

  6. duilib教程之duilib入门简明教程8.完整的自绘标题栏

    看了前面那么多教程,相信对duilib已有基本映像了,我们就快马加鞭,做出一个完整的自绘标题栏吧~    看到下面这个效果图,小伙伴们是不是有点惊呆了呢~O(∩_∩)O~      duilib实现以 ...

  7. Hadoop 平台搭建

    一.在Linux中安装JDK并配置环境变量 输入javac 查看是否已安装java环境如果没有安装 sudo apt-get install openjdk-7-jdk再次检测 javac修改配置参数 ...

  8. JAVA 设计模式之 原型模式详解

    原型模式(Prototype Pattern)是指原型实例指定创建对象的种类,并且通过拷贝这些原型创建新的对象. 原型模式利用的是克隆的原理,创建新的对象,JDK提供的Cloneable 和JSON. ...

  9. 关于ueditor 文本框

    遇到一个问题,需要将从ueditor中的获得的带格式的文本,从数据库中取出,在放回到 ueditor中去,但是 文本中\n总是截断字符串,出现 这种情况,后面的字符就不能算到里面去了,程序就报错了. ...

  10. ReadyAPI 教程和示例(一)

    原文:ReadyAPI 教程和示例(一) 声明:如果你想转载,请标明本篇博客的链接,请多多尊重原创,谢谢! 本篇使用的 ReadyAPI版本是2.5.0 通过下图你可以快速浏览一下主要的ReadyAP ...