Advanced Fruits

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 2358    Accepted Submission(s): 1201
Special Judge

Problem Description
The company "21st Century Fruits" has specialized in creating new sorts of fruits by transferring genes from one fruit into the genome of another one. Most times this method doesn't work, but sometimes, in very rare cases, a new fruit emerges that tastes like a mixture between both of them.
A big topic of discussion inside the company is "How should the new creations be called?" A mixture between an apple and a pear could be called an apple-pear, of course, but this doesn't sound very interesting. The boss finally decides to use the shortest string that contains both names of the original fruits as sub-strings as the new name. For instance, "applear" contains "apple" and "pear" (APPLEar and apPlEAR), and there is no shorter string that has the same property.

A combination of a cranberry and a boysenberry would therefore be called a "boysecranberry" or a "craboysenberry", for example.

Your job is to write a program that computes such a shortest name for a combination of two given fruits. Your algorithm should be efficient, otherwise it is unlikely that it will execute in the alloted time for long fruit names.

 
Input
Each line of the input contains two strings that represent the names of the fruits that should be combined. All names have a maximum length of 100 and only consist of alphabetic characters.

Input is terminated by end of file.

 
Output
For each test case, output the shortest name of the resulting fruit on one line. If more than one shortest name is possible, any one is acceptable.
 
Sample Input
apple peach
ananas banana
pear peach
 
Sample Output
appleach
bananas
pearch
 
Source
先求出最长公共子序列LCS,然后就是掉渣天的回溯法输出只含有一个公共序列并且包含输入的两个序列,LCS的变形题。这里需要设置一个标志数组,用来记录dp的刷新路径。从而在回溯的时候根据标志数组来沿着路径输出。
 
贴一个回溯求出公共子序列的代码:
  

 #include <cstring>
#include <algorithm>
#include <cstdio>
#include <iostream>
using namespace std;
#define Max 102
int dp[Max][Max];
int mark[Max][Max];
char s[Max],t[Max];
int len1,len2;
void LCS() //计算LCS,并用mark标记数组记录dp数组的传递过程
{
int i,j;
memset(mark,,sizeof(mark));
memset(dp,,sizeof(dp));
for(i=;i<=len1;i++)
{
for(j=;j<=len2;j++)
{
if(s[i-]==t[j-])
{
dp[i][j]=dp[i-][j-]+;
// cout<<s[i-1]<<" ";
mark[i][j]=;
}
else if(dp[i-][j]>=dp[i][j-])
{
dp[i][j]=dp[i-][j]; //从上面传递下来
mark[i][j]=;
}
else
{
dp[i][j]=dp[i][j-]; //从左边传递下来
mark[i][j]=;
}
}
} return;
}
void output(int i,int j) //回溯输出
{
/*if(i==0&&j!=0)
{
output(i,j-1);
//printf("%c",t[j-1]);
}
else if(i!=0&&j==0)
{
output(i-1,j);
//printf("%c",s[i-1]);
}
else if(i==0&&j==0)
return;*/
if(i==||j==)
return;
if(mark[i][j]==)
{
output(i-,j-);
printf("%c",s[i-]);
}
else if(mark[i][j]==)
{
output(i-,j);
//printf("%c",s[i-1]);
}
else
{
output(i,j-);
//printf("%c",t[j-1]);
}
return;
}
int main()
{
int i,j;
freopen("in.txt","r",stdin);
while(scanf("%s%s",s,t)!=EOF)
{
len1=strlen(s),len2=strlen(t);
LCS();
output(len1,len2);
printf("\n");
}
}
ACcode:
 #include <cstring>
#include <algorithm>
#include <cstdio>
#include <iostream>
using namespace std;
#define Max 102
int dp[Max][Max];
int mark[Max][Max];
char s[Max],t[Max];
int len1,len2;
void LCS() //计算LCS,并用mark标记数组记录dp数组的传递过程
{
int i,j;
memset(mark,,sizeof(mark));
memset(dp,,sizeof(dp));
for(i=;i<=len1;i++)
{
for(j=;j<=len2;j++)
{
if(s[i-]==t[j-])
{
dp[i][j]=dp[i-][j-]+;
// cout<<s[i-1]<<" ";
mark[i][j]=;
}
else if(dp[i-][j]>=dp[i][j-])
{
dp[i][j]=dp[i-][j]; //从上面传递下来
mark[i][j]=;
}
else
{
dp[i][j]=dp[i][j-]; //从左边传递下来
mark[i][j]=;
}
}
} return;
}
void output(int i,int j) //回溯输出
{
if(i==&&j!=)
{
output(i,j-);
printf("%c",t[j-]);
}
else if(i!=&&j==)
{
output(i-,j);
printf("%c",s[i-]);
}
else if(i==&&j==)
return;
else if(mark[i][j]==)
{
output(i-,j-);
printf("%c",s[i-]);
}
else if(mark[i][j]==)
{
output(i-,j);
printf("%c",s[i-]);
}
else
{
output(i,j-);
printf("%c",t[j-]);
}
return;
}
int main()
{
int i,j;
freopen("in.txt","r",stdin);
while(scanf("%s%s",s,t)!=EOF)
{
len1=strlen(s),len2=strlen(t);
LCS();
output(len1,len2);
printf("\n");
}
}
 

Advanced Fruits(HDU 1503 LCS变形)的更多相关文章

  1. hdu 1503 LCS输出路径【dp】

    hdu 1503 不知道最后怎么输出,因为公共部分只输出一次.有人说回溯输出,感觉好巧妙!其实就是下图,输出的就是那条灰色的路径,但是初始时边界一定要初始化一下,因为最第一列只能向上走,第一行只能向左 ...

  2. Advanced Fruits HDU杭电1503【LCS的保存】

    Problem Description The company "21st Century Fruits" has specialized in creating new sort ...

  3. hdu 1503, LCS variants, find a LCS, not just the length, backtrack to find LCS, no extra markup 分类: hdoj 2015-07-18 16:24 139人阅读 评论(0) 收藏

    a typical variant of LCS algo. the key point here is, the dp[][] array contains enough message to de ...

  4. hdu 1080(LCS变形)

    Human Gene Functions Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Oth ...

  5. hdu 1243(LCS变形)

    反恐训练营 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submi ...

  6. hdu 1503:Advanced Fruits(动态规划 DP & 最长公共子序列(LCS)问题升级版)

    Advanced Fruits Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)T ...

  7. hdu 1503 Advanced Fruits(最长公共子序列)

    Advanced Fruits Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)T ...

  8. 最长公共子序列(加强版) Hdu 1503 Advanced Fruits

    Advanced Fruits Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)T ...

  9. hdu 1503 Advanced Fruits 最长公共子序列 *

    Advanced Fruits Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) ...

随机推荐

  1. 新浪研发中心: Berkeley DB 使用经验总结

    http://blog.sina.com.cn/s/blog_502c8cc40100yqkj.html NoSQL是现在互联网Web2.0时代备受关注的技术之一,被用来存储大量的非关系型的数据.Be ...

  2. iOS opencv

    1.在iPhone上使用 OpenCV http://blog.csdn.net/kmyhy/article/details/7560472 2. OpenCV iOS Hello¶ http://d ...

  3. Hive 11、Hive嵌入Python

    Hive嵌入Python Python的输入输出都是\t为分隔符,否则会出错,python脚本输入print出规定格式的数据 用法为先add file,使用语法为TRANSFORM (name, it ...

  4. UGUI 帧动画插件

    最近在开发一款功夫猫游戏,本来使用Unity Sprite制作,但是发现Sprite对各种分辨率不支持. 看着游戏很简单就使用UGUI制作,在中途发现有很多帧动画播放,使用了Animation调整使用 ...

  5. 平时的笔记04:处理stagger模块

    #! /usr/bin/env python3 # # __init__.py # From the stagger project: http://code.google.com/p/stagger ...

  6. redis实现spring-data-redis整合

    java之redis篇(spring-data-redis整合)  博客链接网址:http://www.cnblogs.com/yjmyzz/tag/redis/ redis的知识:官网 1,利用sp ...

  7. VS2008 由于应用程序配置不正确,应用程序未能启动。重新安装应用程序可能会纠正这个问题。

    提示这个错误,自己的程序是在VS2008下编译的C/C++ win32程序,自己当时在win7上开发测试,都没有问题,正常使用,也在另一台xp系统上也试了,都没有问题.就发给客户了,没想到有些客户竟然 ...

  8. Android应用程序启动过程源代码分析

    文章转载至CSDN社区罗升阳的安卓之旅,原文地址:http://blog.csdn.net/luoshengyang/article/details/6689748 前文简要介绍了Android应用程 ...

  9. 阿里云部署Docker(5)----管理和公布您的镜像

    出到这节,我在百度搜索了一下"阿里云部署Docker",突然发现怎么会有人跟我写的一样呢?哦,原来是其它博客系统的爬虫来抓取,然后也不会写转载自什么什么的.所以,我最终明确为什么那 ...

  10. Unity 读取CSV与Excel

    前几天看到我们在游戏中需要动态加载某些角色的游戏策划值,关于这个问题怎么解决呢?其实办法很多种,归根到底,就是数据的读取.我们可以想到的存储数据的载体有很多.例如:txt,xml,csv,excel. ...