当前位置:网站首页>最长不下降子序列(LIS)(动态规划)
最长不下降子序列(LIS)(动态规划)
2022-07-06 23:08:00 【疯疯癫癫才自由】
- 状态设计:dp[i]表示以str[i]结尾的最长不下降子序列长度
- 状态转移方程:dp[i]=max(dp[j]+1,1) (j<i&&str[j]<=str[i]);
- 当然,后面我们还可以输出这个最长不下降子序列的内容,只需要从后面开始枚举dp的值进行递减,只要dp的值与temp(最长子序列长度递减)相等, 就把str[i]的值加到lis中,直到temp==0为止。
- 输出第一个最长不下降子序列的内容呢:不过是从前面开始枚举罢了。
/**
2)状态设计:dp[i]表示以str[i]结尾的最长不下降子序列长度
状态转移方程:dp[i]=max(dp[j]+1,1) (j<i&&str[j]<=str[i]);
当然,后面我们还可以输出这个最长不下降子序列的内容,只需要从后面
开始枚举dp的值进行递减,只要dp的值与temp(最长子序列长度递减)相等,
就把str[i]的值加到lis中,直到temp==0为止。
输出第一个最长不下降子序列的内容呢:不过是从前面开始枚举罢了。
*/
/**
#include <iostream>
#include <string>
#include <algorithm>
using namespace std;
int main()
{
string str;
cout << "input a string:\n";
cin >> str;
int len=str.size();
int dp[len],ans=0; //dp[i]表示以str[i]结尾的最长不下降子序列长度
dp[0]=1; //状态转移方程:dp[i]=max(dp[j]+1,1) (j<i&&str[j]<=str[i])
for(int i=1;i<len;++i)
{
dp[i]=1;
for(int j=0;j<i;++j)
{
if(str[j]<=str[i]&&dp[j]+1>dp[i])
dp[i]=dp[j]+1;
}
ans=max(ans,dp[i]);
}
string lis; //lis输出最长不下降子序列
int temp=ans;
for(int i=len-1;i>=0;--i)
{
if(dp[i]==temp)
{
lis=str[i]+lis; temp从后开始往前寻找结果,当最长不下降序列
--temp; 不止一个结果时,得到的序列是最后一组
}
}
cout << ans << endl;
for(auto a:str)
cout << a << ' ';
cout << endl;
for(auto a:dp)
cout << a << ' ';
cout << endl;
cout << lis << endl;
string first;
temp=1;
for(int i=0;i<len;++i)
{
if(dp[i]==temp)
{
first+=str[i];
++temp;
}
}
cout << "first substr:\n";
cout << first << endl;
return 0;
}
*/
3)为了后续不下降子序列的内容进行输出,也可开一个result数组,result[i]
表示str[i]的前继结点,一个序列的首结点设置为-1,与其他节点进行区分,
其实和第一个程序利用dp的值进行输出内容是一样的。
/**
3)为了后续不下降子序列的内容进行输出,也可开一个result数组,result[i]
表示str[i]的前继结点,一个序列的首结点设置为-1,与其他节点进行区分,
其实和第一个程序利用dp的值进行输出内容是一样的
*/
#include <iostream>
#include <string>
#include <algorithm>
using namespace std;
int main()
{
string str;
cout << "input a string:\n";
cin >> str;
int len=str.size();
int dp[len]; //dp[i]表示以str[i]结尾的最长不下降子序列长度
dp[0]=1; //状态转移方程:dp[i]=max(dp[j]+1,1) (j<i&&str[j]<=str[i])
int result[len]; //result[i]表示str[i]的前继结点
result[0]=-1; //一个序列的首结点设置为-1,与其他节点进行区分
for(int i=1;i<len;++i)
{
dp[i]=1;
result[i]=-1;
for(int j=0;j<i;++j)
{
if(str[j]<=str[i]&&dp[j]+1>dp[i])
{
dp[i]=dp[j]+1;
result[i]=j;
}
}
}
int p=0,imax=0;
for(int i=0;i<len;++i)
{
if(dp[i]>imax)
{
imax=dp[i];
p=i;
}
}
string lis;
for(;p!=-1;)
{
lis=str[p]+lis;
p=result[p];
}
cout << imax << endl;
cout << lis << endl;
cout << "调试:\n";
for(auto a:str)
cout << a << ' ';
cout << endl;
for(auto a:dp)
cout << a << ' ';
cout << endl;
for(auto a:result)
cout << a << ' ';
cout << endl;
return 0;
}
边栏推荐
猜你喜欢
Error: No named parameter with the name ‘foregroundColor‘
Ansible报错:“msg“: “Invalid/incorrect password: Permission denied, please try again.“
Sublime tips
torch optimizer小解析
JDBC link Oracle reference code
3GPP信道模型路损基础知识
U++4 interface learning notes
Local tool [Navicat] connects to remote [MySQL] operation
Meow, come, come: do you really know if, if else
使用知云阅读器翻译统计遗传学书籍
随机推荐
一文搞懂常见的网络I/O模型
U++ 元数据说明符 学习笔记
01 machine learning related regulations
Section 1: (3) logic chip process substrate selection
[Yugong series] go teaching course 005 variables in July 2022
[hand torn STL] list
sublime使用技巧
ClickHouse(03)ClickHouse怎么安装和部署
AOSP ~Binder 通信原理 (一) - 概要
Ansible中的inventory主机清单(预祝你我有数不尽的鲜花和浪漫)
C语言中函数指针与指针函数
PLC模拟量输出 模拟量输出FB analog2NDA(三菱FX3U)
STM32 system timer flashing LED
Dynamically generate tables
How to design API interface and realize unified format return?
U++ game learning notes
Why do many people misunderstand technical debt
U++4 接口 学习笔记
为什么很多人对技术债务产生误解
3. Type of fund