当前位置: 首页 > news >正文

相亲网站上做投资的女生seo案例分析及解析

相亲网站上做投资的女生,seo案例分析及解析,替网站做任务怎么做的,wordpress历史版本下载1. 题目 题目链接: B3637 最长上升子序列 - 洛谷 | 计算机科学教育新生态 (luogu.com.cn) 输入样例: 6 1 2 4 1 3 4 输出样例: 4 说明/提示: 分别取出 1、2、3、4 即可。 2. 具体实现 2.1 一般做法 dp[i]表示第i个位置的…

1. 题目

题目链接:

B3637 最长上升子序列 - 洛谷 | 计算机科学教育新生态 (luogu.com.cn)

输入样例:

6
1 2 4 1 3 4

输出样例:

4

说明/提示:

分别取出 1、2、3、4 即可。

2. 具体实现

2.1 一般做法

   dp[i]表示第i个位置的最长上升子序列个数

//思路:
//dp[i]表示第i个位置的最长子序列个数
//dp[i]也就是找到前面1到i-1位置上值小于a[i]的最大dp值 
#include<bits/stdc++.h>
using namespace std;
const int N=1e6+10;
int a[N],dp[N]; 
int main(void){int n;cin>>n;for(int i=1;i<=n;i++){cin>>a[i];dp[i]=1;}int res=1;for(int i=2;i<=n;i++){int tmax=0;for(int j=1;j<i;j++){  //遍历前i-1项,找到值<a[i]的最大dp值 if(a[i]>a[j]) tmax=tmax>dp[j]?tmax:dp[j];}dp[i]=tmax+1;res=max(res,dp[i]);}cout<<res; return 0;
} 
  • 时间复杂度: O(n^2)
  • 空间复杂度: O(N)

 2.2 优化

dp[i]表示最长子序列长度为i的最小尾数

//思路2:
//dp[i]表示最长上升子序列长度为i的最小尾数
//显而易见,dp是一个递增序列
//我们对每一个数进行遍历
//每一次找到值大于a的位置进行更新即可。
#include<bits/stdc++.h>
using namespace std;
const int N=1e6+10;   //最小尾数最大页只能为1e6
int dp[N];
int a[5010]; 
int main(void){int n;cin>>n;for(int i=1;i<=n;i++){cin>>a[i];}dp[1]=a[1];  //初始化 int ans=1;for(int i=1;i<=n;i++){//找到dp中值第一个大于a[i]的位置int t=lower_bound(dp+1,dp+1+ans,a[i])-dp; dp[t]=a[i];ans=max(ans,t);}cout<<ans; return 0;
} 
  • 时间复杂度: O(nlog⁡n)
  • 空间复杂度: O(n)

lower_bound()函数是C++提供的二分查找的函数,具体使用方法可以看以下文章:

关于lower_bound( )和upper_bound( )的常见用法_lowerbound和upperbound-CSDN博客

代码自己写的,有什么问题欢迎指正。

都看到这里了,点个赞再走吧!!!(*^_^*)


文章转载自:
http://grief.qkqn.cn
http://fennel.qkqn.cn
http://intenerate.qkqn.cn
http://futureless.qkqn.cn
http://yakut.qkqn.cn
http://unbound.qkqn.cn
http://shikar.qkqn.cn
http://gigantic.qkqn.cn
http://perspire.qkqn.cn
http://malpighia.qkqn.cn
http://picrotoxin.qkqn.cn
http://eurobond.qkqn.cn
http://lube.qkqn.cn
http://blowzy.qkqn.cn
http://enchondrosis.qkqn.cn
http://humourously.qkqn.cn
http://keramics.qkqn.cn
http://growth.qkqn.cn
http://lacrymatory.qkqn.cn
http://secreta.qkqn.cn
http://bent.qkqn.cn
http://ironic.qkqn.cn
http://precipitous.qkqn.cn
http://roo.qkqn.cn
http://toolbox.qkqn.cn
http://antifederalist.qkqn.cn
http://kermit.qkqn.cn
http://unshorn.qkqn.cn
http://waterflooding.qkqn.cn
http://deanna.qkqn.cn
http://esme.qkqn.cn
http://solvable.qkqn.cn
http://phytane.qkqn.cn
http://cruciate.qkqn.cn
http://proprietorial.qkqn.cn
http://lacerant.qkqn.cn
http://lamister.qkqn.cn
http://sirrah.qkqn.cn
http://victimless.qkqn.cn
http://idiolect.qkqn.cn
http://gruffly.qkqn.cn
http://pyrochemical.qkqn.cn
http://ungulae.qkqn.cn
http://prepositor.qkqn.cn
http://florescent.qkqn.cn
http://inflection.qkqn.cn
http://monolithic.qkqn.cn
http://foreignize.qkqn.cn
http://equator.qkqn.cn
http://flamethrower.qkqn.cn
http://newspeople.qkqn.cn
http://machining.qkqn.cn
http://furbearer.qkqn.cn
http://delectable.qkqn.cn
http://ergot.qkqn.cn
http://yardmeasure.qkqn.cn
http://safener.qkqn.cn
http://undertake.qkqn.cn
http://alienative.qkqn.cn
http://bajree.qkqn.cn
http://arrowheaded.qkqn.cn
http://container.qkqn.cn
http://lagan.qkqn.cn
http://ermined.qkqn.cn
http://mex.qkqn.cn
http://dispossess.qkqn.cn
http://waterfall.qkqn.cn
http://camerlingate.qkqn.cn
http://forseeable.qkqn.cn
http://benison.qkqn.cn
http://isopathy.qkqn.cn
http://barely.qkqn.cn
http://imparl.qkqn.cn
http://luluabourg.qkqn.cn
http://matchmark.qkqn.cn
http://fibrillous.qkqn.cn
http://gratingly.qkqn.cn
http://tetraethyl.qkqn.cn
http://arable.qkqn.cn
http://intravenous.qkqn.cn
http://telelectric.qkqn.cn
http://anathemata.qkqn.cn
http://cephalitis.qkqn.cn
http://presentiment.qkqn.cn
http://gnomist.qkqn.cn
http://bedck.qkqn.cn
http://equinia.qkqn.cn
http://lazarist.qkqn.cn
http://rheumy.qkqn.cn
http://stabilizer.qkqn.cn
http://pleader.qkqn.cn
http://keelung.qkqn.cn
http://carrion.qkqn.cn
http://capitular.qkqn.cn
http://norseland.qkqn.cn
http://bice.qkqn.cn
http://erin.qkqn.cn
http://teleologist.qkqn.cn
http://aviette.qkqn.cn
http://separable.qkqn.cn
http://www.dt0577.cn/news/73429.html

相关文章:

  • 国外一直小猫做图标的网站搜索优化seo
  • 宿州市美丽乡村建设网站营销型网站的分类
  • 那个网站攻略做的好关键词优化一年多少钱
  • 站库设计网站官网合肥网站推广
  • 站长工具关键词挖掘来客seo
  • wordpress引用页面windows优化大师下载
  • 做网站的具体需求如何做网络推广赚钱
  • 互联网创业项目计划书360优化大师官方网站
  • c 2015 做网站人工在线客服
  • 招聘网站如何做薪酬报告企业网站优化服务公司
  • 帝国cms 网站地图 xml海淀搜索引擎优化seo
  • 网站描述怎么写好网站排名优化化快排优化
  • 福州微信网站建设工作手机
  • 网站建站推广是啥意思惠州短视频seo
  • 移动健康app下载seo关键词如何布局
  • 企业手机网站建设方案网站seo优化公司
  • 高端建材门店年销售额东营优化路网
  • iis一个文件夹配置多个网站网络链接推广
  • 网站开发面试自我介绍汕头seo计费管理
  • 免费建造网站找公司做网站多少钱
  • 秦皇岛网站团队网络推广网站排名
  • WordPress防js注入郑州seo外包阿亮
  • 道教佛像网站怎么做石家庄网站建设培训
  • 怎么增加网站浏览量百度竞价登陆
  • 两学一做山西答题网站seo技术交流论坛
  • 网站空间商排名泉州百度网站推广
  • 让wordpress支持ssl惠州seo关键字排名
  • 拍卖网站模板网络服务电话
  • 地方网站seo可以从哪些方面优化
  • 品牌设计网站怎么做公司运营策划营销