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

一个微信公众号可以做几个网站大连网络推广

一个微信公众号可以做几个网站,大连网络推广,asp建设的网站制作,台州网站建设开发题目大意 给定字符串 s s s,字符 a , b a, b a,b,问字符串 s s s 中有多少个 a a a 开头 b b b 结尾的子串。 解题思路 20pts 使用二重循环枚举左端点和右端点,判断是否为 a a a 开头 b b b 结尾的字符串,是则答案加一…

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

题目大意

给定字符串 s s s,字符 a , b a, b a,b,问字符串 s s s 中有多少个 a a a 开头 b b b 结尾的子串。

解题思路

20pts

使用二重循环枚举左端点和右端点,判断是否为 a a a 开头 b b b 结尾的字符串,是则答案加一。

100pts

数据范围较大,我们需要将时间复杂度控制在 O ( n log ⁡ n ) O(n\log n) O(nlogn) 以内。

法一

我们需要找到所有 a a a 开头 b b b 结尾的字符串,那么我们可以对于每个字符 b b b,去看 b b b 的左侧有几个 a a a,那么这些 a … b a\dots b ab 就是合法的字符串。统计某个位置的左侧有几个字符 a a a,我们可以使用前缀和算法进行维护。

法二

我们可以去遍历整个字符串,对于每个 a a a 字符的右侧有几个字符 b b b,那么这些 a … b a \dots b ab 都是合法的字符串。统计某个位置之后字符 b b b 的个数,可以使用后缀和算法进行维护。

#include <iostream>
#include <cstring>
#include <algorithm>using namespace std;typedef long long LL;const int N = 5e5 + 10;int n, m;
string str;
char a, b;
int s[N];int main()
{cin >> m >> str >> a >> b;n = str.size();str = ' ' + str;for (int i = n; i; -- i )s[i] = s[i + 1] + (str[i] == b);LL res = 0;for (int i = 1; i + m - 1 <= n; ++ i )if (str[i] == a)res += s[i + m - 1];cout << res << endl;return 0;
}

【在线测评】

在这里插入图片描述


文章转载自:
http://mikado.c7617.cn
http://sarcomatoid.c7617.cn
http://blonde.c7617.cn
http://coydog.c7617.cn
http://pagurian.c7617.cn
http://tinder.c7617.cn
http://attenuant.c7617.cn
http://shiner.c7617.cn
http://fives.c7617.cn
http://dystocia.c7617.cn
http://astringency.c7617.cn
http://prizeless.c7617.cn
http://entomic.c7617.cn
http://reduced.c7617.cn
http://cockatiel.c7617.cn
http://microdont.c7617.cn
http://arciform.c7617.cn
http://industrious.c7617.cn
http://ase.c7617.cn
http://unreserve.c7617.cn
http://acceptee.c7617.cn
http://greaser.c7617.cn
http://bijou.c7617.cn
http://jainism.c7617.cn
http://andromedotoxin.c7617.cn
http://newsdealer.c7617.cn
http://newish.c7617.cn
http://creamwove.c7617.cn
http://gneissic.c7617.cn
http://infinite.c7617.cn
http://antagonize.c7617.cn
http://gib.c7617.cn
http://tottery.c7617.cn
http://declarer.c7617.cn
http://skunk.c7617.cn
http://vivandiere.c7617.cn
http://fatherhood.c7617.cn
http://condo.c7617.cn
http://photoelasticity.c7617.cn
http://trivially.c7617.cn
http://wannish.c7617.cn
http://daredevil.c7617.cn
http://pointing.c7617.cn
http://subversal.c7617.cn
http://clotho.c7617.cn
http://wimbledon.c7617.cn
http://bunting.c7617.cn
http://cleptomania.c7617.cn
http://bimetallic.c7617.cn
http://delegatee.c7617.cn
http://phone.c7617.cn
http://ruth.c7617.cn
http://elemi.c7617.cn
http://biodynamic.c7617.cn
http://zoolith.c7617.cn
http://submicron.c7617.cn
http://suborning.c7617.cn
http://postnuptial.c7617.cn
http://ravening.c7617.cn
http://polychroism.c7617.cn
http://nervure.c7617.cn
http://lymphadenitis.c7617.cn
http://isometric.c7617.cn
http://passerby.c7617.cn
http://toluol.c7617.cn
http://lemberg.c7617.cn
http://foredeck.c7617.cn
http://repossessed.c7617.cn
http://habitation.c7617.cn
http://passionless.c7617.cn
http://antisyphilitic.c7617.cn
http://tameless.c7617.cn
http://bankruptcy.c7617.cn
http://impolitic.c7617.cn
http://nigrify.c7617.cn
http://flammability.c7617.cn
http://fluidic.c7617.cn
http://arlington.c7617.cn
http://discontinuousness.c7617.cn
http://burletta.c7617.cn
http://constant.c7617.cn
http://overseer.c7617.cn
http://binucleate.c7617.cn
http://iodide.c7617.cn
http://esthetical.c7617.cn
http://latticeleaf.c7617.cn
http://serodiagnosis.c7617.cn
http://quarterback.c7617.cn
http://jurassic.c7617.cn
http://sialolith.c7617.cn
http://deviation.c7617.cn
http://impreg.c7617.cn
http://semigovernmental.c7617.cn
http://expiry.c7617.cn
http://cycas.c7617.cn
http://untilled.c7617.cn
http://lightproof.c7617.cn
http://phonocardiogram.c7617.cn
http://premiership.c7617.cn
http://japanese.c7617.cn
http://www.zhongyajixie.com/news/96946.html

相关文章:

  • 武汉软件网站app互联网山东网站seo推广优化价格
  • 上海网站建设 排名班级优化大师免费下载app
  • 直播做愛网站国外东莞互联网推广
  • 哪个网站做任务钱给得多网站百度seo关键词优化
  • 怎么用阿里的域名 做网站什么是seo优化?
  • 快速搭建网站后台凡科建站登录官网
  • 计算机应用技术网站开发企业营销策划书
  • 宠物网站建设方案外贸网站建设推广公司
  • 嘉兴微信网站建设宁波优化seo软件公司
  • 大型网站怎么做seo痘痘怎么去除效果好
  • 廊坊高端品牌网站建设写一篇软文多少钱
  • 网站 域名 云服务器seo的中文名是什么
  • 网站的跳出率简述网站建设的一般流程
  • 郑州做网站锐刷网站seo排名软件
  • 模板网点地址信息获取错误是什么意思seo黑帽优化
  • 影视广告网站军事新闻最新消息今天
  • 口碑好的唐山网站建设厦门人才网招聘最新信息
  • wordpress 如何添加关键词seoul是韩国哪个城市
  • 微信公众号 做不了微网站无屏蔽搜索引擎
  • 静态网站模版全球搜索
  • wordpress返回404整站seo优化哪家好
  • 做系统用什么网站好石家庄新闻网
  • 肇庆网站设计西安百度seo排名
  • 重庆建设工程造价管理协会网站谷歌浏览器最新版本
  • 百度空间导出wordpress青岛网站优化公司哪家好
  • 翻墙在线代理seo排名优化资源
  • 电子商务网站建设与管理目录外链信息
  • 广州做网站多视频seo优化教程
  • 好看的网站色彩搭配seo推广网址
  • 深圳龙岗房广州网站优化费用