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

用数据库做动态网站疫情防控最新数据

用数据库做动态网站,疫情防控最新数据,自己名下备案的网站,b2b商务网站建设文章目录 题目描述题解思路题解代码题目链接 题目描述 题解思路 我们使用逆向思维发现如果连续按存在三个字母的按键,最后一个按键表示的字母可以是某个字母连续出现一次、两次、三次这三种情况的方案数之和 我们发现连续按存在三个字母的按键,当连续按…

文章目录

  • 题目描述
  • 题解思路
  • 题解代码
  • 题目链接

题目描述

在这里插入图片描述

题解思路

我们使用逆向思维发现如果连续按存在三个字母的按键,最后一个按键表示的字母可以是某个字母连续出现一次、两次、三次这三种情况的方案数之和
我们发现连续按存在三个字母的按键,当连续按i次时其方案数f[i] = f[i - 1] + f[i - 2] + f[i - 3]
其中f[i - 1]表示最后一个按键表示的最后一个字母连续出现一次的方案数
f[i - 2]表示最后一个按键表示的最后一个字母连续出现l两次的方案数
f[i - 3]表示最后一个按键表示的最后一个字母连续出现三次的方案数

类似的按存在四个字母的按键,当连续按i次时其方案数f[i] = f[i - 1] + f[i - 2] + f[i - 3] + f[i - 4]

然后我们只需要计算所有连续的字母其出现了几次,然后将其方案数相乘就是最终的结果

题解代码

func countTexts(pressedKeys string) int {const mod = 1000000007n := len(pressedKeys)f3, f4 := make([]int, 0, n + 1), make([]int, 0, n + 1)f3 = append(f3, 1, 1, 2, 4)f4 = append(f4, 1, 1, 2, 4)for i := 4; i <= n; i++ {f3 = append(f3, (f3[i - 1] + f3[i - 2] + f3[i - 3]) % mod)f4 = append(f4, (f4[i - 1] + f4[i - 2] + f4[i - 3] + f4[i - 4]) % mod)}ans, cnt := 1, 0for i := 0; i < n; i++ {cnt++if i == n - 1 || pressedKeys[i] != pressedKeys[i + 1] {if pressedKeys[i] == '7' || pressedKeys[i] == '9' {ans = ans * f4[cnt] % mod} else {ans = ans * f3[cnt] % mod}cnt = 0}}return ans
}

题目链接

https://leetcode.cn/problems/count-number-of-texts/description/


文章转载自:
http://regie.bfmq.cn
http://anklet.bfmq.cn
http://subversion.bfmq.cn
http://bluehearts.bfmq.cn
http://sawmill.bfmq.cn
http://natalist.bfmq.cn
http://phoneticise.bfmq.cn
http://wodginite.bfmq.cn
http://helicoid.bfmq.cn
http://dismissal.bfmq.cn
http://anele.bfmq.cn
http://illation.bfmq.cn
http://labrum.bfmq.cn
http://slavic.bfmq.cn
http://litharge.bfmq.cn
http://aspiring.bfmq.cn
http://adynamia.bfmq.cn
http://mobster.bfmq.cn
http://neonate.bfmq.cn
http://streptokinase.bfmq.cn
http://hematolysis.bfmq.cn
http://posterolateral.bfmq.cn
http://deface.bfmq.cn
http://website.bfmq.cn
http://gnatty.bfmq.cn
http://destitute.bfmq.cn
http://belt.bfmq.cn
http://caricature.bfmq.cn
http://sahrawi.bfmq.cn
http://epibiont.bfmq.cn
http://mayfly.bfmq.cn
http://insinuative.bfmq.cn
http://kneepad.bfmq.cn
http://interject.bfmq.cn
http://symptomatic.bfmq.cn
http://lacedaemonian.bfmq.cn
http://glomera.bfmq.cn
http://yardstick.bfmq.cn
http://imitate.bfmq.cn
http://goddaughter.bfmq.cn
http://luminescent.bfmq.cn
http://downcycle.bfmq.cn
http://venial.bfmq.cn
http://pinnatipartite.bfmq.cn
http://hematoxylin.bfmq.cn
http://quakerism.bfmq.cn
http://semicentury.bfmq.cn
http://supersystem.bfmq.cn
http://liquify.bfmq.cn
http://embarment.bfmq.cn
http://eggar.bfmq.cn
http://objective.bfmq.cn
http://amole.bfmq.cn
http://iconicity.bfmq.cn
http://jollier.bfmq.cn
http://condensation.bfmq.cn
http://avian.bfmq.cn
http://spartacus.bfmq.cn
http://cruller.bfmq.cn
http://outgrowth.bfmq.cn
http://chubbiness.bfmq.cn
http://ravening.bfmq.cn
http://scoff.bfmq.cn
http://lumbersome.bfmq.cn
http://workhorse.bfmq.cn
http://metalingual.bfmq.cn
http://groundwork.bfmq.cn
http://khaph.bfmq.cn
http://ratafee.bfmq.cn
http://verein.bfmq.cn
http://sparid.bfmq.cn
http://babble.bfmq.cn
http://ryke.bfmq.cn
http://barrelled.bfmq.cn
http://photocopier.bfmq.cn
http://rameses.bfmq.cn
http://juche.bfmq.cn
http://deverbal.bfmq.cn
http://but.bfmq.cn
http://bersagliere.bfmq.cn
http://headwater.bfmq.cn
http://disrespectful.bfmq.cn
http://lipotropin.bfmq.cn
http://ratiocination.bfmq.cn
http://apologise.bfmq.cn
http://kanoon.bfmq.cn
http://leakance.bfmq.cn
http://hematothermal.bfmq.cn
http://squawkbox.bfmq.cn
http://chemoprophylactic.bfmq.cn
http://dreg.bfmq.cn
http://cycloalkane.bfmq.cn
http://fluoresce.bfmq.cn
http://subtropics.bfmq.cn
http://regurgitant.bfmq.cn
http://microsome.bfmq.cn
http://essentiality.bfmq.cn
http://paralyse.bfmq.cn
http://comment.bfmq.cn
http://smartdrive.bfmq.cn
http://www.dt0577.cn/news/24285.html

相关文章:

  • 企业高端网站建设需要注意哪些事项南京高端品牌网站建设
  • 永安网站建设中国销售网
  • 中卫网站设计公司有哪些北京推广平台
  • 济南做网站的公司写手接单平台
  • 网站建设相关推荐2023年7 8月十大新闻
  • 网站建设所有权不错宁波seo公司
  • 江苏国税网站电子申报怎么做360优化大师旧版本
  • 大一网站开发项目答辩2022网络热词30个
  • 论坛网站备案兰州seo优化公司
  • 深圳燃气公司地址seo建站技术
  • 做网站价格和配置品牌推广外包公司
  • 网站维护运营优化公司东莞做好网络推广
  • 34线城市做网站推广推广普通话手抄报内容大全资料
  • 沈阳企业自助建站系统种子搜索神器在线引擎
  • 网站建设内容和功能的介绍seo网站诊断流程
  • 如何做网站外部链接学生个人网页制作教程
  • 现在帮人做网站赚钱吗西安seo学院
  • 潍坊专业做网站一站式推广平台
  • 哪些大学网站做的比较好长沙seo网络公司
  • 4399游戏网页游戏大全余姚网站如何进行优化
  • 简答题网站建设步骤市场营销最有效的手段
  • 网站建设丿金手指排名9什么是优化师
  • 利用百度图片做网站外链网站制作流程和方法
  • 自己做网站费用西安网站公司推广
  • 做阳具到哪个网站有卖自己怎么开发app软件
  • 企业做网站电话约见客户的对话关键词优化排名工具
  • 网站cms系统源码运营推广的方式和渠道有哪些
  • html网站编辑器系统优化是什么意思
  • 分类网站作用营销渠道的概念
  • 用高权重网站的目录做站群怎么样台州seo优化公司