博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu 1159 Common Subsequence(最长公共子序列 DP)
阅读量:5063 次
发布时间:2019-06-12

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

题目链接:

Common Subsequence

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

Total Submission(s): 25416    Accepted Submission(s): 11276

Problem Description
A subsequence of a given sequence is the given sequence with some elements (possible none) left out. Given a sequence X = <x1, x2, ..., xm> another sequence Z = <z1, z2, ..., zk> is a subsequence of X if there exists a strictly increasing sequence <i1, i2, ..., ik> of indices of X such that for all j = 1,2,...,k, xij = zj. For example, Z = <a, b, f, c> is a subsequence of X = <a, b, c, f, b, c> with index sequence <1, 2, 4, 6>. Given two sequences X and Y the problem is to find the length of the maximum-length common subsequence of X and Y.
The program input is from a text file. Each data set in the file contains two strings representing the given sequences. The sequences are separated by any number of white spaces. The input data are correct. For each set of data the program prints on the standard output the length of the maximum-length common subsequence from the beginning of a separate line.
 

 

Sample Input
abcfbc abfcab
programming contest
abcd mnp
 
Sample Output
4
2
0
 
题目大意:找到最长公共子序列,如:abcfbc abfcab 这个的最长公共子序列为abfc或abcb 所以输出4!
 
题目思路:定义一个dp[i][j]的二维数组。用来表示最长的公共子序列数。i表示第一个字符串的开始位置,j表示第二个字符串的开始位置。也就是从后向前推。dp[0][0]表示从第0个到第n个的最长公共子序列数,因为结尾就是n。dp[n][n]表示的是第n个到第n个的最长公共子序列。
 
详见代码。
1 #include 
2 #include
3 #include
4 5 using namespace std; 6 7 int dp[1001][1001]; 8 9 int main()10 {11 char a[1001],b[1001];12 while (~scanf("%s%s",a,b))13 {14 int len1=strlen(a);15 int len2=strlen(b);16 memset(dp,0,sizeof(dp));17 for (int i=len1-1;i>=0;i--)18 {19 for (int j=len2-1;j>=0;j--)20 {21 if (a[i]==b[j])22 dp[i][j]=dp[i+1][j+1]+1;23 else24 dp[i][j]=max(dp[i+1][j],dp[i][j+1]);25 }26 }27 printf ("%d\n",dp[0][0]);28 }29 return 0;30 }

 

 

转载于:https://www.cnblogs.com/qq-star/p/4302214.html

你可能感兴趣的文章
一个小的手机答题网页【1. 需求及数据库设计】
查看>>
IOS 音频的 使用说明
查看>>
SQL Prompt Snippet Manager 妙用
查看>>
c# 学习心得(函数方法类)
查看>>
linux 命令行下的作业管理
查看>>
PL/SQL Developer连接本地Oracle 11g 64位数据库
查看>>
GNU make manual 翻译(七十九)
查看>>
Visual Studio 2008中FormatX源代码格式化插件
查看>>
内部排序技术
查看>>
string s = null 和 string s = “”的区别
查看>>
Jquery ajax调用webservice总结
查看>>
职业生涯【1】选择职业
查看>>
实用手册:130+ 提高开发效率的 vim 常用命令
查看>>
基于 jQuery & CSS3 实现智能提示输入框光标位置
查看>>
Nibbler – 免费的网站测试和指标评分工具
查看>>
转-使用EditPlus技巧,提高工作效率
查看>>
ACM/ICPC 之 电力网络-EK算法(POJ1459)
查看>>
wordpress 支持上传中文名称文件
查看>>
中国剩余定理---FZU 1402 猪的安家
查看>>
最近在线笔试的一些感想和总结,阿里巴巴,腾讯,百度,360。c++研发,机器学习等岗位...
查看>>