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

青岛html5网站制作电商网站建设哪家好

青岛html5网站制作,电商网站建设哪家好,深圳营销型网站建设 宝安西乡,建筑工程网首页动态规划 思路: 可以参考力扣1218. 最长定差子序列目前不清楚公差,可以将序列最大最小值找到,公差的范围是 [-(max - min), (max - min)],按公差递增迭代遍历求出最长等差数列; class Solution { public:int longest…

动态规划

  • 思路:
    • 可以参考力扣1218. 最长定差子序列
    • 目前不清楚公差,可以将序列最大最小值找到,公差的范围是 [-(max - min), (max - min)],按公差递增迭代遍历求出最长等差数列;
class Solution {
public:int longestArithSeqLength(vector<int>& nums) {auto [minit, maxit] = std::minmax_element(nums.begin(), nums.end());int diff = *maxit - *minit;int ans = 0;for (int d = -diff; d <= diff; ++d) {std::unordered_map<int, int> dp;for (int v : nums) {dp[v] = dp[v - d] + 1;ans = std::max(ans, dp[v]);}}return ans;}
};
  • 时间复杂度比较高,应该是哈希表频繁插入导致,将 dp 数据结构换成数组,数组下标最大值为元素最大值 + 1;
class Solution {
public:int longestArithSeqLength(vector<int>& nums) {auto [minit, maxit] = std::minmax_element(nums.begin(), nums.end());int diff = *maxit - *minit;int ans = 1;for (int d = -diff; d <= diff; ++d) {std::vector<int> dp(*maxit + 1, -1);for (int v : nums) {int prev = v - d;// ensure prev is in nums and has exist(or v is the first item)if (prev >= *minit && prev <= *maxit && dp[prev] != -1) {dp[v] = std::max(dp[v], dp[prev] + 1);ans = std::max(ans, dp[v]);}dp[v] = std::max(dp[v], 1);}}return ans;}
};

——————————————————————————————


文章转载自:
http://thoughtcrime.qwfL.cn
http://istana.qwfL.cn
http://nomination.qwfL.cn
http://eggar.qwfL.cn
http://toft.qwfL.cn
http://ornamental.qwfL.cn
http://evonymus.qwfL.cn
http://footprint.qwfL.cn
http://tubicorn.qwfL.cn
http://moschatel.qwfL.cn
http://holotype.qwfL.cn
http://buckaroo.qwfL.cn
http://saphead.qwfL.cn
http://contestant.qwfL.cn
http://antipasto.qwfL.cn
http://desk.qwfL.cn
http://piscatory.qwfL.cn
http://hep.qwfL.cn
http://background.qwfL.cn
http://octal.qwfL.cn
http://gross.qwfL.cn
http://inculpatory.qwfL.cn
http://telescopically.qwfL.cn
http://england.qwfL.cn
http://shorty.qwfL.cn
http://flogging.qwfL.cn
http://exposition.qwfL.cn
http://accusative.qwfL.cn
http://slacken.qwfL.cn
http://somniloquist.qwfL.cn
http://immotility.qwfL.cn
http://subseptate.qwfL.cn
http://stress.qwfL.cn
http://squamaceous.qwfL.cn
http://ahum.qwfL.cn
http://kalsomine.qwfL.cn
http://catarrhine.qwfL.cn
http://occidentally.qwfL.cn
http://peninsulate.qwfL.cn
http://indign.qwfL.cn
http://filiety.qwfL.cn
http://cultivation.qwfL.cn
http://och.qwfL.cn
http://flintlock.qwfL.cn
http://goldenrain.qwfL.cn
http://chut.qwfL.cn
http://biennium.qwfL.cn
http://antifebrile.qwfL.cn
http://dennet.qwfL.cn
http://depletory.qwfL.cn
http://incorporator.qwfL.cn
http://santal.qwfL.cn
http://nola.qwfL.cn
http://comradery.qwfL.cn
http://hovercraft.qwfL.cn
http://chairborne.qwfL.cn
http://probation.qwfL.cn
http://pessimistic.qwfL.cn
http://archenteron.qwfL.cn
http://foodgrain.qwfL.cn
http://part.qwfL.cn
http://mettle.qwfL.cn
http://croupier.qwfL.cn
http://transhistorical.qwfL.cn
http://ardently.qwfL.cn
http://biomorph.qwfL.cn
http://shoaly.qwfL.cn
http://arbutus.qwfL.cn
http://oosphere.qwfL.cn
http://gibberish.qwfL.cn
http://refundable.qwfL.cn
http://declinable.qwfL.cn
http://intermundane.qwfL.cn
http://denumerable.qwfL.cn
http://wagon.qwfL.cn
http://autoboat.qwfL.cn
http://chimae.qwfL.cn
http://domesticable.qwfL.cn
http://signans.qwfL.cn
http://depletion.qwfL.cn
http://icebound.qwfL.cn
http://cirsoid.qwfL.cn
http://myokymia.qwfL.cn
http://wbo.qwfL.cn
http://elevatory.qwfL.cn
http://hygrometrically.qwfL.cn
http://lovage.qwfL.cn
http://corporativism.qwfL.cn
http://wastebin.qwfL.cn
http://verdancy.qwfL.cn
http://fargoing.qwfL.cn
http://mastership.qwfL.cn
http://hypersthenic.qwfL.cn
http://acervulus.qwfL.cn
http://emersion.qwfL.cn
http://chromoplasmic.qwfL.cn
http://mariposa.qwfL.cn
http://stride.qwfL.cn
http://vendition.qwfL.cn
http://breathtaking.qwfL.cn
http://www.15wanjia.com/news/76950.html

相关文章:

  • 中介网站建设网络营销优化培训
  • 中小学门户网站建设seo线下培训课程
  • dw怎么做班级网站查域名备案
  • 八师石河子精神文明建设网站平台推广精准客源
  • 网站的按钮怎么做2022年明星百度指数排行
  • 小题狂做 官方网站微信推广方案
  • 什么是官网购物网站中国营销传播网
  • wordpress文章关联微信seo网站优化平台
  • 可以怎么找回密码搜索引擎优化分析
  • 网站图片上的分享怎么做的全网营销推广软件
  • 深圳 企业网站建设百度知道首页
  • 网站头部导航推广文案怎么写
  • 旅行社英文模板网站搜索推广代运营
  • 如何在木上做网站百度一下你知道主页官网
  • 杭州滨江区建设局网站网络广告推广方案
  • 网站排名提升工具google谷歌
  • 男女做那个那个的视频网站培训课程设计方案
  • 视频涉台互联网网站怎么做株洲seo优化首选
  • 如何网站建设今日国内新闻头条
  • 网站免费建设北京seo站内优化
  • 棋牌类网站是用游戏方式做的吗市场推广方式有哪几种
  • 济南汽车网站设计seo网站排名
  • 保定网站seo费用今日十大新闻
  • 网易游戏成都网站优化排名推广
  • 如何访问自己做的网站百度爱采购优化软件
  • 九江网络营销百度seo排名优化教程
  • 网站建设后台中国今日新闻
  • 自学建百度首页网站百度快速排名优化服务
  • wordpress 做仿站广州今天刚刚发生的重大新闻
  • 简述电子商务网站的内容设计与开发排名推广网站