Problem 2684 --Dynamic Programming - Longest Common Subsequence

2684: Dynamic Programming - Longest Common Subsequence

"
Time Limit $1$ 秒/Second(s) Memory Limit $512$ 兆字节/Megabyte(s)
提交总数 $3$ 正确数量 $2$
裁判形式 标准裁判/Standard Judge 我的状态 尚未尝试
难度 分类标签 STL

Longest Common Subsequence 

For given two sequences X and Y, a sequence Z is a common subsequence of XX and YY if Z is a subsequence of both X and Y. For example, if X={a,b,c,b,d,a,b} and Y={b,d,c,a,b,a}, the sequence{b,c,a} is a common subsequence of both X and Y. On the other hand, the sequence {b,c,a} is not a longest common subsequence (LCS) of X and Y, since it has length 3 and the sequence {b,c,b,a}, which is also common to both X and Y, has length 4. The sequence{b,c,b,a} is an LCS of X and Y, since there is no common subsequence of length 5 or greater. 

Write a program which finds the length of LCS of given two sequences X and Y. The sequence consists of alphabetical characters.

The input consists of multiple datasets. In the first line, an integer q which is the number of datasets is given. In the following 2×q lines, each dataset which consists of the two sequences X and Y are given.
For each dataset, print the length of LCS of X and Y in a line.
3
abcbdab
bdcaba
abc
abc
abc
bc
4
3
2

1≤q≤150

1≤ length of X and Y ≤1,000

q≤20  if the data set includes a sequence whose length is more than 100

推荐代码 查看2684 所有题解 上传题解视频得图灵币

本题记录 用 户(点击查看用户) 运行号(点击购买题解) 时 间
算法最快[$64 $ms] 海燕 938128 2022-12-30 19:21:53
内存最少[$6032 $KB] 王天驰 807945 2022-01-25 20:58:11
第一AC 王天驰 807945 2022-01-25 20:58:11
第一挑战 王天驰 807944 2022-01-25 20:57:28

赛题来源/所属竞赛 会津大学《挑战数据结构与算法》 挑战数据结构与算法

竞赛编号 竞赛名称 竞赛时间 访问比赛