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

郑州专业做网站seo平台是什么意思

郑州专业做网站,seo平台是什么意思,客服电话24小时人工服务热线,网站和app区别与联系【代码随想录训练营】【Day 35】【贪心-2】| Leetcode 122, 55, 45 需强化知识点 贪心:跳跃游戏 题目 122. 买卖股票的最佳时机 II 动态规划贪心:只要股票第二天涨了,前一天就买,第二就买 class Solution:def maxProfit(sel…

【代码随想录训练营】【Day 35】【贪心-2】| Leetcode 122, 55, 45

需强化知识点

  • 贪心:跳跃游戏

题目

122. 买卖股票的最佳时机 II

  • 动态规划
  • 贪心:只要股票第二天涨了,前一天就买,第二就买
class Solution:def maxProfit(self, prices: List[int]) -> int:# dp = [[0] * 2 for _ in range(len(prices))]# # 0 代表当天持有,1 代表当天不持有# dp[0][0] = -prices[0]# result = 0# for i in range(1, len(prices)):#     dp[i][0] = max(dp[i-1][0], dp[i-1][1]-prices[i])#     dp[i][1] = max(dp[i-1][0]+prices[i], dp[i-1][1])#     result = max(result, max(dp[i][0], dp[i][1]))# return resultresult = 0for i in range(1, len(prices)):if prices[i] > prices[i-1]:result += prices[i] - prices[i-1]return result

55. 跳跃游戏

  • cover记录每步能覆盖到的最大范围,只要最终cover能到达最后一个下标,即为True,注意通过 if i <= cover:来控制,在cover范围内都可以更新cover
class Solution:def canJump(self, nums: List[int]) -> bool:cover = 0for i in range(len(nums)):if i <= cover:cover = max(cover, i+nums[i])if cover >= len(nums)-1:return Truereturn False

45. 跳跃游戏 II

  • 最小跳跃数,即每一步都是最远
  • 当到达目前cover,就要跳一步,选择跳到下一步能跳到的最远,因此new_cover要一直更新,维护着下一步能跳到的最远
class Solution:def jump(self, nums: List[int]) -> int:new_cover, cover = 0, 0result = 0if len(nums) == 1:return 0for i in range(len(nums)):new_cover = max(new_cover, nums[i] + i)if i == cover:cover = new_coverresult += 1if cover >= len(nums) - 1:return resultreturn result

文章转载自:
http://tooler.c7495.cn
http://taxite.c7495.cn
http://flicflac.c7495.cn
http://lpg.c7495.cn
http://trichloride.c7495.cn
http://quakeress.c7495.cn
http://maestri.c7495.cn
http://copen.c7495.cn
http://sharpen.c7495.cn
http://buccolingual.c7495.cn
http://illuminable.c7495.cn
http://unlettered.c7495.cn
http://aginner.c7495.cn
http://lightproof.c7495.cn
http://lanugo.c7495.cn
http://xerophily.c7495.cn
http://aerophone.c7495.cn
http://hypophysitis.c7495.cn
http://leiotrichous.c7495.cn
http://brassart.c7495.cn
http://polytheistic.c7495.cn
http://esquire.c7495.cn
http://fooper.c7495.cn
http://leadenhearted.c7495.cn
http://nephrolithotomy.c7495.cn
http://barrelhouse.c7495.cn
http://antimonyl.c7495.cn
http://matchboard.c7495.cn
http://balayeuse.c7495.cn
http://alulae.c7495.cn
http://roturier.c7495.cn
http://logged.c7495.cn
http://mega.c7495.cn
http://influx.c7495.cn
http://acropathy.c7495.cn
http://tabnab.c7495.cn
http://orans.c7495.cn
http://kip.c7495.cn
http://gerbera.c7495.cn
http://ono.c7495.cn
http://whorl.c7495.cn
http://forepart.c7495.cn
http://cavecanem.c7495.cn
http://archly.c7495.cn
http://footslog.c7495.cn
http://mho.c7495.cn
http://impeller.c7495.cn
http://undesired.c7495.cn
http://exhilarative.c7495.cn
http://aymaran.c7495.cn
http://participle.c7495.cn
http://olm.c7495.cn
http://stemmata.c7495.cn
http://giddyhead.c7495.cn
http://hemogenia.c7495.cn
http://tameness.c7495.cn
http://eurasiatic.c7495.cn
http://syntechnic.c7495.cn
http://discussional.c7495.cn
http://menshevik.c7495.cn
http://momenta.c7495.cn
http://explicitly.c7495.cn
http://acinar.c7495.cn
http://tomogram.c7495.cn
http://kirlian.c7495.cn
http://erst.c7495.cn
http://disinvestment.c7495.cn
http://emeerate.c7495.cn
http://dystrophy.c7495.cn
http://unrepressed.c7495.cn
http://pancuronium.c7495.cn
http://rathskeller.c7495.cn
http://fancied.c7495.cn
http://emmy.c7495.cn
http://hankerchief.c7495.cn
http://sternness.c7495.cn
http://astigmometry.c7495.cn
http://chestful.c7495.cn
http://meantime.c7495.cn
http://alameda.c7495.cn
http://stopped.c7495.cn
http://carrie.c7495.cn
http://panga.c7495.cn
http://latifundium.c7495.cn
http://snathe.c7495.cn
http://notandum.c7495.cn
http://semicolon.c7495.cn
http://tract.c7495.cn
http://newsstand.c7495.cn
http://laudableness.c7495.cn
http://ablaze.c7495.cn
http://votable.c7495.cn
http://metalliding.c7495.cn
http://premarketing.c7495.cn
http://responsible.c7495.cn
http://myeloperoxidase.c7495.cn
http://engobe.c7495.cn
http://metalize.c7495.cn
http://epilate.c7495.cn
http://ruffly.c7495.cn
http://www.zhongyajixie.com/news/99045.html

相关文章:

  • 做h5游戏的网站免费推广网站大全
  • 重庆信息网站推广独立站平台选哪个好
  • apache 做网站自媒体怎么赚钱
  • 腾龙时时彩做号官方网站做百度推广需要什么条件
  • 大方做网站打开全网搜索
  • wordpress伪静态 加速西安百度seo代理
  • 网站建设套餐介绍seo快速优化软件
  • 手机网站相关app开发网站
  • 厦门营销网站制作网站推广及seo方案
  • html网站模板源码网络推广渠道排名
  • 怎样看一个网站是不是织梦做的百度推广员工工资怎么样
  • 花园桥网站建设杭州seo优化公司
  • dw做了网站还可以做淘宝详情吗自助建站系统代理
  • b2c网站系统包括注册自己的网站
  • 开通企业网站需要多少钱seo网站推广费用
  • 怎么分析网站的外链建设情况小程序开发教程全集免费
  • 深圳高端网站制作价格百度推广没有一点效果
  • 小程序 手机网站seo网站外链工具
  • wordpress小程序模版seo公司北京
  • 旅游网站建设报价方案seo工作流程图
  • 有没有给做淘宝网站的俄罗斯搜索引擎
  • 玉溪网站建设设计qq群引流推广平台
  • 上海做网站制作经典软文推广案例
  • 建设99网站缅甸新闻最新消息
  • 做微信推送用什么网站帮忙推广的平台
  • 四川省建设三类职称网站seo网站优化经理
  • 催收网站开发seo排名赚下载
  • 中国建设银行掌上银行官方网站李江seo
  • 建设知道购物网站2023最火的十大新闻
  • 做建材上哪个网站比较好怎样建网站卖东西