博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
单调递增最长子序列
阅读量:6817 次
发布时间:2019-06-26

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

单调递增最长子序列

描述

求一个字符串的最长递增子序列的长度 如:dabdbf最长递增子序列就是abdf,长度为4

 

 

输入
第一行一个整数0<n<20,表示有n个字符串要处理 随后的n行,每行有一个字符串,该字符串的长度不会超过10000
输出
输出字符串的最长递增子序列的长度
样例输入
3aaaababcabklmncdefg
样例输出
137

 

#include 
#include
#include
#include
#include
#include
#include
#include
using namespace std;char ch[10005];int dis[10005];int main(){ int n; cin>>n; while(n--) { cin>>ch; dis[0] = 1; int max_ = 1; for(int i=0;i
= max_) max_ = dis[i]; } } cout<
<

 

转载于:https://www.cnblogs.com/imwtr/p/4069428.html

你可能感兴趣的文章
构建单页面应用
查看>>
BZOJ4078 : [Wf2014]Metal Processing Plant
查看>>
变量的数据类型的转换
查看>>
codevs1022 覆盖[Hungary 二分图最大匹配]
查看>>
Deci and Centi Seconds parsing in java
查看>>
ES mlockall作用——preventing that memory from being paged to the swap area
查看>>
How those spring enable annotations work--转
查看>>
【SFTP】使用Jsch实现Sftp文件下载-支持断点续传和进程监控
查看>>
Mac系统中各个文件夹简单介绍(转)
查看>>
流媒体技术学习笔记之(八)海康、大华IpCamera RTSP地址和格式
查看>>
[React] Test friendly approach
查看>>
安卓解析 json 4种格式 全解析
查看>>
asd
查看>>
北斗有 35 颗卫星,而 GPS 有 24 颗卫星,为什么二者数量不同?
查看>>
php对gzip的使用(实例)
查看>>
iOS_7_scrollView大图缩放
查看>>
防火墙入站规则防护方程式攻击-比特币勒索
查看>>
Jackson序列化日期类型的属性
查看>>
pio 背景色
查看>>
[转]Web Api系列教程第2季(OData篇)(二)——使用Web Api创建只读的OData服务
查看>>