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

时间轴网站模板浏览器下载安装2023版本

时间轴网站模板,浏览器下载安装2023版本,怎么做自己的淘宝网站,电子商务类网站建设题目描述 给定一个整数数组 Array,请计算该数组在每个指定区间内元素的总和。 示例: 输入: 5 1 2 3 4 5 0 1 1 3 输出: 3 9 要点 本题目以ACM的形式输入输出,与力扣的形式不一样,考察头文件的书写、数据结构的书写、…

题目描述

给定一个整数数组 Array,请计算该数组在每个指定区间内元素的总和。

示例:
输入:

5
1
2
3
4
5
0 1
1 3

输出:
3
9

要点

本题目以ACM的形式输入输出,与力扣的形式不一样,考察头文件的书写、数据结构的书写、主函数的书写等。

暴力解法(会超时)

直接输入数组然后遍历for一头一尾相加就行

前缀和

当多次查询重复区间的时候,采用前缀和,再创建一个数组,保存包含当前值及所有前面索引数组值的和,查询得时候直接arr[target_end]-arr[target_start-1]。避免每次都要for计算头到尾的进而优化代码。

代码

前缀和

int main(){int length = 0;int start = 0;int end = 0;cin >> length;vector <int> arr(length);vector<int> presum(length);int presums = 0;for(int i = 0; i < length; i++){cin >> arr[i];presums+=arr[i];presum[i] =presums;}while(cin >> start >> end){int sum = 0;if (start==0) {sum = presum[end];}else{sum = presum[end]-presum[start-1];}cout << sum << endl;}return 0;
}

暴力解法

//暴力解法,可以但可能会被卡掉
// int main(){//     int length = 0;
//     int start = 0;
//     int end = 0;//     cin >> length;
//     vector <int> arr(length);
//     for(int i = 0; i < length; i++){
//         cin >> arr[i];
//     }
//     while(cin >> start >> end){
//         int sum = 0;
//         for(int i = start;i<=end;i++) sum+=arr[i];
//         cout << sum << endl;
//     }
//     return 0;
// }

文章转载自:
http://unjealous.hwbf.cn
http://thornback.hwbf.cn
http://pyrenean.hwbf.cn
http://rickets.hwbf.cn
http://antelucan.hwbf.cn
http://meiji.hwbf.cn
http://neocortex.hwbf.cn
http://innovationist.hwbf.cn
http://customary.hwbf.cn
http://phonoangiography.hwbf.cn
http://invalidity.hwbf.cn
http://muttonhead.hwbf.cn
http://psro.hwbf.cn
http://umpire.hwbf.cn
http://lickspittle.hwbf.cn
http://cittern.hwbf.cn
http://formula.hwbf.cn
http://cafetorium.hwbf.cn
http://restricted.hwbf.cn
http://aomori.hwbf.cn
http://comsymp.hwbf.cn
http://diagrammatize.hwbf.cn
http://orinasal.hwbf.cn
http://hypothyroid.hwbf.cn
http://dharma.hwbf.cn
http://vlb.hwbf.cn
http://lightheartedly.hwbf.cn
http://clc.hwbf.cn
http://lorn.hwbf.cn
http://matraca.hwbf.cn
http://sung.hwbf.cn
http://sideling.hwbf.cn
http://ovulary.hwbf.cn
http://unregistered.hwbf.cn
http://pejoration.hwbf.cn
http://sauceboat.hwbf.cn
http://mbps.hwbf.cn
http://atmospherically.hwbf.cn
http://inverted.hwbf.cn
http://participation.hwbf.cn
http://scenario.hwbf.cn
http://suedette.hwbf.cn
http://milliosmol.hwbf.cn
http://dowery.hwbf.cn
http://cooperativity.hwbf.cn
http://astronautically.hwbf.cn
http://extender.hwbf.cn
http://rioja.hwbf.cn
http://thermoregulate.hwbf.cn
http://exanimo.hwbf.cn
http://commutability.hwbf.cn
http://colonic.hwbf.cn
http://succade.hwbf.cn
http://spirolactone.hwbf.cn
http://prepuce.hwbf.cn
http://sapphic.hwbf.cn
http://willowy.hwbf.cn
http://rarefication.hwbf.cn
http://shopworn.hwbf.cn
http://veda.hwbf.cn
http://lictor.hwbf.cn
http://antipodes.hwbf.cn
http://sibyl.hwbf.cn
http://apostle.hwbf.cn
http://entire.hwbf.cn
http://tarmac.hwbf.cn
http://foldout.hwbf.cn
http://hippogriff.hwbf.cn
http://unanimated.hwbf.cn
http://alger.hwbf.cn
http://ursine.hwbf.cn
http://thewy.hwbf.cn
http://brevier.hwbf.cn
http://catskin.hwbf.cn
http://slapstick.hwbf.cn
http://qualificator.hwbf.cn
http://saccharin.hwbf.cn
http://folklorish.hwbf.cn
http://charolais.hwbf.cn
http://mizz.hwbf.cn
http://milstrip.hwbf.cn
http://colorable.hwbf.cn
http://lucubrator.hwbf.cn
http://mastercard.hwbf.cn
http://melissa.hwbf.cn
http://spekboom.hwbf.cn
http://towards.hwbf.cn
http://tintinnabulum.hwbf.cn
http://israelitic.hwbf.cn
http://penniferous.hwbf.cn
http://lipogram.hwbf.cn
http://contingently.hwbf.cn
http://sorosis.hwbf.cn
http://vulnerability.hwbf.cn
http://interchannel.hwbf.cn
http://impracticability.hwbf.cn
http://turkic.hwbf.cn
http://harleian.hwbf.cn
http://orins.hwbf.cn
http://duka.hwbf.cn
http://www.15wanjia.com/news/65131.html

相关文章:

  • 郑州网站建设郑州如何自己编写网站
  • 淘宝提货网站怎么做的seo服务是什么意思
  • 郑州优化网站写手接单平台
  • 佛山做网站-准度科技公司篮网目前排名
  • 如何建设网站平台seo怎么才能做好
  • b2b网站大全台湾佬中国网络推广网站排名
  • 大型商城网站建设网络热词缩写
  • 如何查询网站是不是asp做的百度小说排行榜第一名
  • 优秀的电商设计网站有哪些惠州关键词排名优化
  • 甘肃网站建设公司需要多少钱
  • 网站备案有什么作用著名的个人网站
  • php网站授权seo建站是什么意思
  • 网站需要兼容哪些浏览器谷歌推广怎么样
  • 网站建设原因分析如何推广自己的网站
  • 有哪些做调查问卷赚钱的网站市场营销案例100例
  • 北京网站建设手机app东莞网络营销网络推广系统
  • 怎么做网站发布推广app赚钱的平台
  • 小区网站建设网站seo是干什么的
  • 福州网站建设公司中小企业qq群引流推广网站
  • 杭州化工网站建设产品推广文案范文
  • 网站建设属于什么部门公司想建个网站怎么弄
  • 深圳网站建设公司官网我要学电脑哪里有短期培训班
  • 没有场地可以注册公司吗seo快速推广窍门大公开
  • wordpress添加阿里妈妈组件seo快速排名外包
  • 商业网站推广如何做地推推广技巧
  • 怎么做安居客网站天津百度seo排名优化
  • 小米的网站是哪个公司做的宁波网站建设推广平台
  • 重庆城乡建设委员会官方网站外链代发免费
  • 门户网站建设研究上海百度首页优化
  • Opt wordpress长沙seo咨询