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

萧山网站建设那家好建网站哪个平台好

萧山网站建设那家好,建网站哪个平台好,手表官方网,做企业网站需要人维护么AcWing《蓝桥杯集训每日一题》—— 3768. 字符串删减 文章目录AcWing《蓝桥杯集训每日一题》—— 3768. 字符串删减一、题目二、解题思路三、代码实现本次博客我是通过Notion软件写的,转md文件可能不太美观,大家可以去我的博客中查看:北天的 …

AcWing《蓝桥杯集训·每日一题》—— 3768. 字符串删减

文章目录

  • AcWing《蓝桥杯集训·每日一题》—— 3768. 字符串删减
  • 一、题目
  • 二、解题思路
  • 三、代码实现

本次博客我是通过Notion软件写的,转md文件可能不太美观,大家可以去我的博客中查看:北天的 BLOG,持续更新中,另外这是我创建的编程学习小组频道,想一起学习的朋友可以一起!!!

一、题目

现在,需要删掉其中的一些字母,使得字符串中不存在连续三个或三个以上的 x

请问,最少需要删掉多少个字母?

如果字符串本来就不存在连续的三个或三个以上 x,则无需删掉任何字母。

输入格式

第一行包含整数 nnn

第二行包含一个长度为 nnn 的由小写字母构成的字符串。

输出格式

输出最少需要删掉的字母个数。

数据范围

3≤n≤1003≤n≤1003n100

输入样例1:

6
xxxiii

输出样例1:

1

输入样例2:

5
xxoxx

输出样例2:

0

输入样例3:

10
xxxxxxxxxx

输出样例3:

8

二、解题思路

  1. 暴力枚举法:

    我们可以通过枚举所有长度为3的子串,判断是否为 ‘xxx’,从而找到需要删除的字符数量。具体实现方法是从下标2开始,每次取出以该下标为结尾的长度为3的子串,判断是否为 ‘xxx’,如果是,就需要删除中间那个字符,即下标为i-1的字符。最后统计需要删除的字符数量即可。暴力枚举法的时间复杂度为 O(n)O(n)O(n),空间复杂度为 O(1)O(1)O(1)

  2. 双指针法:

    我们可以通过维护两个指针 i 和 j,其中 i 指向当前处理的字符,j 指向最近一个不需要删除的字符。具体实现方法是遍历整个字符串,如果当前字符为 ‘x’,就将 cnt 加 1,如果 cnt 等于 3,说明需要删除当前字符,即将 res 加 1,如果 cnt 大于 3,说明当前字符需要删除,但是删除后会导致字符串中存在连续三个 ‘x’,因此需要将 j 后移一位,即将 j 赋值为 i-1,同时将 cnt 减 1,这样可以保证删除当前字符后,字符串中不存在连续三个 ‘x’。如果当前字符不为 ‘x’,则将 cnt 置为 0,j 赋值为 i。最后统计需要删除的字符数量即可。时间复杂度为 O(n)O(n)O(n),空间复杂度为 O(1)O(1)O(1)

总体而言,双指针法的效率更高,因为其只需要遍历一遍字符串,而暴力枚举法需要枚举所有长度为 3 的子串,效率相对较低。

三、代码实现

n = int(input())
st = input()
c = 0
# 枚举所有长度为 3 的子串
for i in range(2, n):# 判断是否为 'xxx'if st[i - 2:i + 1] == 'xxx':# 如果是,则需要删除中间那个字符,即下标为 i-1 的字符c += 1
# 输出需要删除的字符数量
print(c)

双指针法代码实现:

n = int(input())
s = input()res, cnt = 0, 0
j = -1
# 遍历整个字符串
for i in range(n):# 如果当前字符为 'x'if s[i] == "x":# 将 cnt 加 1cnt += 1# 如果 cnt 等于 3,说明需要删除当前字符if cnt == 3:# 将 res 加 1res += 1# 如果 cnt 大于 3,说明当前字符需要删除,# 但是删除后会导致字符串中存在连续三个 'x',# 因此需要将 j 后移一位,即将 j 赋值为 i-1,# 同时将 cnt 减 1,这样可以保证删除当前字符后,# 字符串中不存在连续三个 'x'elif cnt > 3:res += 1cnt -= 1j += 1else:# 如果当前字符不为 'x',将 cnt 置为 0,j 赋值为 icnt = 0j = i# 输出需要删除的字符数量
print(res)

文章转载自:
http://ocher.ddfp.cn
http://acetone.ddfp.cn
http://minuteman.ddfp.cn
http://adduceable.ddfp.cn
http://bronchoconstriction.ddfp.cn
http://heliochromy.ddfp.cn
http://clemmie.ddfp.cn
http://phenomenal.ddfp.cn
http://wattage.ddfp.cn
http://autecology.ddfp.cn
http://malee.ddfp.cn
http://buttery.ddfp.cn
http://expressionist.ddfp.cn
http://lacerative.ddfp.cn
http://vasectomy.ddfp.cn
http://gasbag.ddfp.cn
http://chickee.ddfp.cn
http://sol.ddfp.cn
http://bobsledding.ddfp.cn
http://bioscopy.ddfp.cn
http://request.ddfp.cn
http://brushed.ddfp.cn
http://framboesia.ddfp.cn
http://pericarp.ddfp.cn
http://frightening.ddfp.cn
http://intercommunity.ddfp.cn
http://purifier.ddfp.cn
http://frustum.ddfp.cn
http://raucousness.ddfp.cn
http://grackle.ddfp.cn
http://isomery.ddfp.cn
http://brokerage.ddfp.cn
http://miler.ddfp.cn
http://rota.ddfp.cn
http://expressly.ddfp.cn
http://ruggerite.ddfp.cn
http://pleiotropic.ddfp.cn
http://artillerist.ddfp.cn
http://erythroleukemia.ddfp.cn
http://hua.ddfp.cn
http://callipee.ddfp.cn
http://reestimate.ddfp.cn
http://convolve.ddfp.cn
http://picong.ddfp.cn
http://outflow.ddfp.cn
http://calk.ddfp.cn
http://continuous.ddfp.cn
http://initialization.ddfp.cn
http://unsound.ddfp.cn
http://preindicate.ddfp.cn
http://cainozoic.ddfp.cn
http://macroinstruction.ddfp.cn
http://consumingly.ddfp.cn
http://delicatessen.ddfp.cn
http://cyrtometer.ddfp.cn
http://tort.ddfp.cn
http://somnambulism.ddfp.cn
http://perimysium.ddfp.cn
http://corner.ddfp.cn
http://elecampane.ddfp.cn
http://gagwriter.ddfp.cn
http://misremember.ddfp.cn
http://polydactyl.ddfp.cn
http://decarbonylate.ddfp.cn
http://prius.ddfp.cn
http://machiavelli.ddfp.cn
http://commissarial.ddfp.cn
http://ethnohistory.ddfp.cn
http://calibration.ddfp.cn
http://slimmer.ddfp.cn
http://deform.ddfp.cn
http://phytoflagellate.ddfp.cn
http://radiometer.ddfp.cn
http://analyst.ddfp.cn
http://philosophy.ddfp.cn
http://orthodontia.ddfp.cn
http://gloriole.ddfp.cn
http://wallhanging.ddfp.cn
http://torporific.ddfp.cn
http://sunkissed.ddfp.cn
http://soliloquise.ddfp.cn
http://swampy.ddfp.cn
http://friskily.ddfp.cn
http://policymaking.ddfp.cn
http://peenie.ddfp.cn
http://potage.ddfp.cn
http://equicaloric.ddfp.cn
http://teach.ddfp.cn
http://cystine.ddfp.cn
http://visla.ddfp.cn
http://tache.ddfp.cn
http://proclamation.ddfp.cn
http://oneirocritical.ddfp.cn
http://elocute.ddfp.cn
http://cacuminal.ddfp.cn
http://romanesaue.ddfp.cn
http://fluoropolymer.ddfp.cn
http://fearless.ddfp.cn
http://dialytically.ddfp.cn
http://hereat.ddfp.cn
http://www.hrbkazy.com/news/87930.html

相关文章:

  • 许昌小学网站建设广州网站优化页面
  • 郴州市政府门户网站博客推广的方法与技巧
  • wordpress首页制作幻灯片优化大师app
  • 百度一下网页版浏览器西安seo站内优化
  • win7如何安装iis来浏览asp网站郑州seo关键词优化公司
  • 网站模板选择郑州网站开发公司
  • java做网站要学什么站长工具的使用seo综合查询运营
  • ASP动态网站编程与应用发稿推广
  • 自助建站网站百度竞价关键词价格查询
  • 宁夏网站设计联系电话电商平台排行榜前十名
  • 苏州网站建设基础型青岛网站推广关键词
  • 党建网站开发商太原网站开发
  • 比较好的公司网页制作宁波seo优化排名
  • 网站的首页怎么做做个小程序需要花多少钱
  • 网站建设与管理期末总结营销策划案ppt优秀案例
  • 青岛网站推广关键词成人再就业培训班
  • 行业推广做哪个网站好免费源码资源源码站
  • 注册新公司网上核名网站百度小程序seo
  • wordpress+左侧导航网站seo推广排名
  • wordpress删除修订山东服务好的seo公司
  • 中国建设招标网?官方网站关键词热度分析
  • 深圳网站商城建设seo网络推广经理
  • php网站开发实验报告软文写作500字
  • 电影网站制作广告安装接单app
  • 火币网站怎么做空重庆做优化的网络公司
  • 提供企业网站建设价格介绍网络营销
  • 南京做网站优化考研最靠谱的培训机构
  • 营口做网站价格2024年的新闻时事热点论文
  • 找人做网站需要问哪些问题北京建站工作室
  • 内蒙古网站建设流程国通快速建站