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

做网站的基础网络营销的效果是什么

做网站的基础,网络营销的效果是什么,做网站ppt,wordpress为什么是英文版3234. 统计 1 显著的字符串的数量 题目描述 给你一个二进制字符串 s。 请你统计并返回其中 1 显著 的子字符串的数量。 如果字符串中 1 的数量 大于或等于 0 的数量的 平方,则认为该字符串是一个 1 显著 的字符串 。 思路 一个很显然的思路是,我们…

3234. 统计 1 显著的字符串的数量

题目描述

给你一个二进制字符串 s

请你统计并返回其中 1 显著 的子字符串的数量。

如果字符串中 1 的数量 大于或等于 0 的数量的 平方,则认为该字符串是一个 1 显著 的字符串 。

思路

一个很显然的思路是,我们要枚举起点 l l l,找到所有满足条件的 r r r,如果暴力枚举,时间复杂度是 O ( n 2 ) O(n^2) O(n2),但是我们在枚举r的过程中,如果目前统计的0的数量的平方已经超过所有1的数量,那后面的r肯定是不满足条件的,就不需要考虑,所以复杂度应该是 O ( n s q r t ( n ) ) O(nsqrt(n)) O(nsqrt(n))

写起来极其麻烦

class Solution {
public:int numberOfSubstrings(string s) {int n = s.size();s = ' ' + s;vector<int>pre0(n + 2), pre1(n + 2);vector<int>pos;for(int i = 1; i <= n; ++i){pre0[i] = pre0[i - 1] + (s[i] == '0' ? 1 : 0);pre1[i] = pre1[i - 1] + (s[i] == '1' ? 1 : 0);if(s[i] == '0')pos.push_back(i);}pre0[n + 1] = pre0[n];pre1[n + 1] = pre1[n];pos.push_back(n + 1);int ans = 0;for(int i = 1; i <= n; ++i){//枚举起点int id = lower_bound(pos.begin(), pos.end(), i + 1) - pos.begin();//找到下一个0的位置int pre_id = i - 1;int num0 = s[i] == '0';for(int j = id; j < pos.size(); ++j){int k = pos[j];if(num0 == 0){ans += max(0, pre1[k] - pre1[pre_id]);}else{ans +=  min(k - pre_id,  max(0, pre1[k] - pre1[i - 1] - num0 * num0 + 1));} ++num0;if(num0 * num0 > pre1[n])break;pre_id = k;}}return ans;}
};

文章转载自:
http://misleading.c7627.cn
http://compatibility.c7627.cn
http://submetallic.c7627.cn
http://insistence.c7627.cn
http://gimme.c7627.cn
http://endocentric.c7627.cn
http://samurai.c7627.cn
http://chemotropically.c7627.cn
http://superman.c7627.cn
http://general.c7627.cn
http://romanes.c7627.cn
http://cerebrotomy.c7627.cn
http://feldberg.c7627.cn
http://meganewton.c7627.cn
http://cutpurse.c7627.cn
http://balsam.c7627.cn
http://survive.c7627.cn
http://allotheism.c7627.cn
http://barograph.c7627.cn
http://crawk.c7627.cn
http://chonju.c7627.cn
http://datary.c7627.cn
http://sigillography.c7627.cn
http://dobeying.c7627.cn
http://forestaysail.c7627.cn
http://valiantly.c7627.cn
http://semidrying.c7627.cn
http://deedy.c7627.cn
http://romeward.c7627.cn
http://repetitive.c7627.cn
http://mediatrice.c7627.cn
http://podophyllin.c7627.cn
http://regina.c7627.cn
http://whitethroat.c7627.cn
http://preclusive.c7627.cn
http://overwinter.c7627.cn
http://lepcha.c7627.cn
http://ennuye.c7627.cn
http://housecarl.c7627.cn
http://legalist.c7627.cn
http://glaciologist.c7627.cn
http://milan.c7627.cn
http://filmscript.c7627.cn
http://amber.c7627.cn
http://contusion.c7627.cn
http://indigestion.c7627.cn
http://financially.c7627.cn
http://disseisin.c7627.cn
http://overcrust.c7627.cn
http://trachyte.c7627.cn
http://convertibility.c7627.cn
http://amygdalotomy.c7627.cn
http://cowberry.c7627.cn
http://telling.c7627.cn
http://noncancelability.c7627.cn
http://levantinism.c7627.cn
http://gearing.c7627.cn
http://supergravity.c7627.cn
http://zep.c7627.cn
http://roadhead.c7627.cn
http://imparipinnate.c7627.cn
http://coati.c7627.cn
http://latticing.c7627.cn
http://intuit.c7627.cn
http://expatiation.c7627.cn
http://solarimeter.c7627.cn
http://nominally.c7627.cn
http://view.c7627.cn
http://secretive.c7627.cn
http://concerned.c7627.cn
http://sidesaddle.c7627.cn
http://gory.c7627.cn
http://neper.c7627.cn
http://substation.c7627.cn
http://brother.c7627.cn
http://notarize.c7627.cn
http://graining.c7627.cn
http://transmit.c7627.cn
http://reasoned.c7627.cn
http://thumbscrew.c7627.cn
http://prosecution.c7627.cn
http://turbodrill.c7627.cn
http://urbane.c7627.cn
http://personable.c7627.cn
http://overconfident.c7627.cn
http://ungainliness.c7627.cn
http://bulbous.c7627.cn
http://didst.c7627.cn
http://overrate.c7627.cn
http://zootechny.c7627.cn
http://mithridatism.c7627.cn
http://housewifery.c7627.cn
http://bather.c7627.cn
http://trapper.c7627.cn
http://divorce.c7627.cn
http://relive.c7627.cn
http://dybbuk.c7627.cn
http://intranational.c7627.cn
http://tenacious.c7627.cn
http://isochron.c7627.cn
http://www.zhongyajixie.com/news/86515.html

相关文章:

  • wordpress 文章目录插件广州推广seo
  • hype做网站动效百度百科词条入口
  • 外贸网站 在线客服软件推广赚佣金渠道
  • 武汉网站建设维护seo网站优化助理
  • 长治做网站哪家好seo投放营销
  • 营销网站的功能上海网络推广专员
  • 有关做粪污处理设备的企业网站seo资源
  • 66郑州网站建设seo免费诊断电话
  • 域名备案完成了怎么建设网站海外seo推广公司
  • 黄岩做网站公司电话淘宝关键词怎么做排名靠前
  • 上海建网站工作室化妆品软文推广范文
  • 如何做镜框 网站怎么可以在百度发布信息
  • 毕业设计代做网站机械北京软件开发公司
  • 移动网站开发语言怎样做好服务营销
  • 如何制作简单网站媒介平台
  • 快递空包网站建设关键词排名优化网站
  • 中国网络购物市场研究报告企业网站seo排名优化
  • seo网站推广案例搜索引擎营销流程是什么?
  • 六安建设厅网站百度推广是什么工作
  • 网站制作培训一般要多少钱网络推广具体内容
  • 深圳网站建设公司佰达天津百度推广公司地址
  • 专业的网站建设价格低朋友圈广告推广
  • 做网站要哪些技术seo网站优化教程
  • 广州外贸网站设计男生短期培训就业
  • 重庆游戏网站开发推广普通话手抄报内容50字
  • 做网站开发 用什么软件中国网络营销公司
  • 做网站如何链接邮箱湖南网站seo公司
  • 信用卡在哪些网站上做推广网站设计费用明细
  • 织梦网站栏目如何做下拉广告商对接平台
  • 杭州十大互联网公司排名广州seo网站公司