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. js+jquery+html实现在三种不通的情况下,点击图片放大的效果

    js+jquery+html实现在三种不通的情况下,点击图片放大的效果. 三种情况分别是:图片的父元素宽高固定;  图片的宽高固定;  图片的父元素宽固定,高度不固定 第一种情况:图片的父元素宽高固定 ...

  2. Xshell4连接Linux后 win快捷键锁屏

    今天在使用Xshell连接CentOS后 使用Vim编辑器编辑完后 习惯性的按了Ctrl+S 然后按什么都不起作用 只能重新连接 通过查资料得知 Ctrl + S 是Linux 锁屏的快捷键 要解除锁 ...

  3. Effective Java实作equals() - 就是爱Java

    equals()这个方法,定义在Object class中,这个是所有class的base class,因此所有的class都继承这个方法,默认是比较内存地址,不过Mix需要的是商业规则上的比较,所以 ...

  4. 浅谈WebView的使用 js alert

    http://blog.csdn.net/liuhe688/article/details/6549263 WebView是Android中一个非常实用的组件,它和Safai.Chrome一样都是基于 ...

  5. Keil C51里关于堆栈指针的处理

    Keil C是非常优秀的C51编译器,可能是最好的C51编译器,提供各种优化模式,对变量的优化和地址安排做得非常好.这是用C语言写代码的好处之一,如果用汇编写,得费一大番功夫给各个变量安排内存物理地址 ...

  6. spring boot之使用springfox swagger展示restful的api doc

    摘要 springfox swagger展示restful的api doc, swagger is A POWERFUL INTERFACE TO YOUR API. 新增文件: import org ...

  7. kibana 统计每天注册数

  8. 【转载】视频编码(H264概述)

    一视频编码介绍 1.1 视频压缩编码的目标 1)保证压缩比例 2)保证恢复的质量 3)易实现,低成本,可靠性 1.2 压缩的出发点(可行性) 1)时间相关性 在一组视频序列中,相邻相邻两帧只有极少的不 ...

  9. 新建一个MVCProject 项目

    App_Data文件夹用于存放数据库文件的 App_Start文件夹用于存放Web应用程序启动时需要进行重要配置的类文件 Content 文件夹用于存放主题样式文件 Controllers 文件夹用于 ...

  10. textChanged(*)重点

    # -*- coding: cp936 -*- import sys from PyQt4 import QtCore, QtGui class MyDialog(QtGui.QDialog): de ...