HDU 1503 Advanced Fruits

Advanced Fruits

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 3622    Accepted Submission(s): 1872
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

题目大意就是找到最长公共子序列。然后输出输入的两个字符串,注意,取出来的公共子序列只输出一遍!

好吧,我承认我当时也看不懂题意。只能按照公共子序列的套路来咯

 1 #include<iostream>
 2 #include<stdio.h>
 3 #include<string.h>
 4 int dp[105][105];
 5 using namespace std;
 6 struct Node{//i,j记录最长公共子序列在a,b串的位置,ch保存字符
 7     int i,j;
 8     char ch;
 9 };
10 int main()
11 {
12     char a[105],b[105];
13     while(~scanf("%s%s",a+1,b+1))
14     {
15         memset(dp,0,sizeof(dp));
16         int alen=strlen(a+1);
17         int blen=strlen(b+1);
18         for(int i=1;i<=alen;i++)
19         {
20             for(int j=1;j<=blen;j++)
21             {
22                 if(a[i]==b[j]){
23                     dp[i][j]=dp[i-1][j-1]+1;
24                 }else{
25                     dp[i][j]=max(dp[i-1][j],dp[i][j-1]);
26                 }
27             }
28         }
29         Node ans[105];
30         int len=0;
31         if(dp[alen][blen]==0)
32             printf("%s%s",a,b);
33         else{
34             int i=alen,j=blen;
35             while(i!=0&&j!=0)//倒序取出最长公共子序列,得到最长公共子序列的dp过程的逆推
36             {
37                 if(dp[i][j]==dp[i-1][j-1]+1&&a[i]==b[j]){
38                     ans[len].i=i;
39                     ans[len].j=j;
40                     ans[len++].ch=a[i];
41                     i--;
42                     j--;
43                 }else if(dp[i-1][j]>dp[i][j-1]){
44                     i--;
45                 }else{
46                     j--;
47                 }
48             }
49         }
50         int i=1,j=1;
51         for(int k=len-1;k>=0;k--)//输出结果
52         {
53             while(i!=ans[k].i){
54                 cout<<a[i];
55                 i++;
56             }
57             while(j!=ans[k].j){
58                 cout<<b[j];
59                 j++;
60             }
61             cout<<ans[k].ch;
62             i++;
63             j++;
64         }
65         printf("%s%s",a+1+ans[0].i,b+1+ans[0].j);
66         cout<<endl;
67     }
68     return 0;
69 }
时间: 2024-10-08 23:31:47

HDU 1503 Advanced Fruits的相关文章

HDU 1503 Advanced Fruits (LCS,DP)

题意:给你两字符串s1,s2,用最短的字符串表示他们(公共字串输出一次). Sample Input apple peach ananas banana pear peach Sample Output appleach bananas pearch dp[i][j] : 第一个字符串的前 i 个 ,和第二个字符串的前 j 个最短组合的长度 . pre[i][j] : 第一个字符串的第 i 个 ,和第二个字符串的第 j 个字符的状态. #include<cstdio> #include<

HDU 1503 Advanced Fruits[ LCS ]

题目:HDU 1503 思路:先求出最长公共子序列,记录路径.后进行拼接. 代码 #include<cstdio> #include<cstring> #include<cstring> #include<vector> #include<iostream> #include<algorithm> #define mod 1000000007 using namespace std; typedef long long LL; int

HDU 1503 Advanced Fruits(LCS+记录路径)

http://acm.hdu.edu.cn/showproblem.php?pid=1503 题意: 给出两个串,现在要确定一个尽量短的串,使得该串的子串包含了题目所给的两个串. 思路: 这道题目就是要我们求LCS,记录好路径就好. 1 #include<iostream> 2 #include<algorithm> 3 #include<cstring> 4 #include<cstdio> 5 #include<sstream> 6 #inc

HDU 1503 Advanced Fruits(LCS变形且输出解)

http://acm.hdu.edu.cn/showproblem.php?pid=1503 题意: 给你两个字符串s1和s2, 要你输出它们的并串s. 其中s1是s的一个子序列且s2也是s的一个子序列且s是所有符合前面要求的最短字符串. 分析: 令dp[i][j]==x表示s1串的前i个字符和s2串的前j个字符组成的串的LCS长度为x. 我们先求出LCS的dp数组值. 然后按照POJ2250: http://blog.csdn.net/u013480600/article/details/40

题解报告:hdu 1503 Advanced Fruits

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

hdu 1503 Advanced Fruits(DP)

题意: 将两个英文单词进行合并.[最长公共子串只要保留一份] 输出合并后的英文单词. 思路: 求最长公共子串. 记录路径: mark[i][j]=-1:从mark[i-1][j]转移而来. mark[i][j]=0:从mark[i-1][j-1]转移而来. mark[i][j]=1:从mark[i][j-1]转移而来. 代码: char s1[105], s2[105]; int dp[105][105]; int mark[105][105]; void print(int x,int y){

HDU 1503 Advanced Fruits (LCS,最长公共子串,变形)

题意:给两个水果名,要求他们的LCS部分只输出1次,其他照常输出,但是必须保持原来的顺序! 思路:求LCS是常规的,但是输出麻烦了,要先求LCS,再标记两串中的所有LCS字符,在遇到LCS字符时,先输串1的,再输串2的,然后输该字符,以保证每个LCS字符输出前,两串中该字符前面的字符全部已输出. 1 //#pragma comment(linker,"/STACK:102400000,102400000") 2 #include <iostream> 3 #include

HDU 1503 Advanced Fruits (LCS升级版)

题目大意:将两个字符串结合起来,他们的公共子串只输出一次 根据LCS的原理,将每个字符都进行标记,看两个字符串中对应的字符究竟处于什么状态,然后输出,其标记为公共子串的字符只输出一次即可,也是一道模板题了. http://blog.csdn.net/libin56842/article/details/9618529 #include <stdio.h> #include <string.h> #include <algorithm> using namespace s

杭电 1503 Advanced Fruits

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 frui