博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
寒假。3.3.G - Common Child (最大公共子序)
阅读量:5882 次
发布时间:2019-06-19

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

Given two strings a and b of equal length, what's the longest string (s) that can be constructed such that it is a child of both? 

A string x is said to be a child of a string y if x can be formed by deleting 0 or more characters from y
For example, ABCD and ABDC has two children with maximum length 3, ABC and ABD. Note that we will not consider ABCD as a common child because C doesn't occur before D in the second string.

Input format

Two strings, a and b, with a newline separating them.

Constraints

1<=|a|,|b|<=5000

All characters are upper cased and lie between ASCII values 65-90.

Output format

Print the length of the longest string s, such that s is a child of both a and b.

Sample Input 0

HARRYSALLY

Sample Output 0

2

The longest possible string that is possible by deleting zero or more characters from HAPPY and SALLY is AY, whose length is 2.

Sample Input 1

AABB

Sample Output 1

0

AA and BB has no characters in common and hence the output is 0.

Sample Input 2

SHINCHANNOHARAAA

Sample Output 2

3

The longest string that can be formed between SHINCHAN and NOHAPAAA while maintaining the order is NHA.

Sample Input 3

ABCDEFFBDAMN

Sample Output 3

2

BD is the longest child of the given strings.

这题一点都没有看懂是真的,今天的题,这道题可以说是最简单的模板题了,于是我现场上百度去control了一把。这题是最大公共子序。

现在还是什么都不懂。

转载于:https://www.cnblogs.com/ineedyou/p/8496540.html

你可能感兴趣的文章
IntelliJ IDEA 内存优化最佳实践
查看>>
Cloud Insight!StatsD 系监控产品新宠!
查看>>
友盟2015年Q2、Q3季度中国移动互联网趋势报告
查看>>
聊聊MongoDB - MongoDB索引介绍分享
查看>>
设计模式(10)状态模式(讲解+应用)
查看>>
从理论到实践,全方位认识DNS(理论篇)
查看>>
JIRA issue 中的标记语言(Textile)
查看>>
GhostBSD 19.04 发布,注重安全与稳定性的 FreeBSD 发行版
查看>>
开源软件受云服务商影响,共用条款终止开源滥用现象
查看>>
SQL 、 NoSQL 和 NewSQL 的优缺点比较
查看>>
自定义布局实现侧滑菜单1
查看>>
开源SQL-on-Hadoop系统一览
查看>>
【3-2 报名中】Apache RocketMQ 开发者沙龙 成都站
查看>>
Java后端学习路线图,你真的只需要这一张!
查看>>
C++进程间通信的十一种方法
查看>>
通过DataWorks数据集成归档日志服务数据至MaxCompute进行离线分析 ...
查看>>
[MySQL] ibtmp文件过大怎么处理?
查看>>
分享几款Unity脚本插件 解决跨平台输入控制难题 ...
查看>>
报表也可以根据单元格计算后结果进行排序
查看>>
ACM MM 论文 | 用于行人重识别的多层相似度感知CNN网络 ...
查看>>