当前位置:网站首页>795. 前缀和
795. 前缀和
2022-08-05 11:46:00 【aJupyter】
Question
输入一个长度为 n 的整数序列。
接下来再输入 m 个询问,每个询问输入一对 l,r。
对于每个询问,输出原序列中从第 l 个数到第 r 个数的和。
输入格式
第一行包含两个整数 n 和 m。
第二行包含 n 个整数,表示整数数列。
接下来 m 行,每行包含两个整数 l 和 r,表示一个询问的区间范围。
输出格式
共 m 行,每行输出一个询问的结果。
数据范围
1≤l≤r≤n,
1≤n,m≤100000,
−1000≤数列中元素的值≤1000
输入样例:
5 3
2 1 3 6 4
1 2
1 3
2 4
输出样例:
3
6
10
Ideas
一维前缀和
Code
# 一维前缀和
''' 规定s[0] = 0 [l,r]区间和s[r]-s[l-1] '''
N = 100010
s = [0 for i in range(N)]
n,m = list(map(int,input().strip().split()))
a = [0] + list(map(int,input().strip().split()))
for i in range(1,n+1):
s[i] = s[i-1] + a[i]
for i in range(m):
l,r = list(map(int,input().strip().split()))
print(s[r]-s[l-1])
边栏推荐
- Support Vector Machine SVM
- STM32H743IIT6学习笔记02——USART
- Android development with Kotlin programming language three loop control
- el-menu箭头改为右下
- Can't get in to ask questions.I want to ask you a question about the return value (traversal of the graph), please give Xiaobai an answer.
- 澳洲站:电吹风AS/NZS 60335.2.23: 2017 安全标准测试
- Go编译原理系列9(函数内联)
- [7.29-8.5] Review of wonderful technical blog posts in the writing community
- Letter from Silicon Valley: Act fast, Facebook, Quora and other successful "artifacts"!
- 如何用Golang来手写一个Blog - Milu.blog 开发总结
猜你喜欢
版本控制篇 | 龙智邀您共赴GOPS全球运维大会,探索大规模、敏捷、高质量、开放式的软件研发与运营之路
Four, kubeadm single master
Qt::qcustomplot 和 qchart数据填充相关
.NET in-depth analysis of the LINQ framework (6: LINQ execution expressions)
Official release 2022 Nanjing Zhibo Expo is scheduled to be held in Xinzhuang National Exhibition in October
祝所有码农七夕快乐~
Http-Sumggling Cache Vulnerability Analysis
LeetCode刷题(8)
Naive bayes
碘乙酰胺在Desthiobiotin-Iodoacetamide试剂中的作用?
随机推荐
Letter from Silicon Valley: Act fast, Facebook, Quora and other successful "artifacts"!
Four, kubeadm single master
2022杭电多校联赛第六场 题解
WPF开发随笔收录-WriteableBitmap绘制高性能曲线图
hdu1455 Sticks (search+pruning+pruning+.....+pruning)
【名词】什么是PV和UV?
60行从零开始自己动手写FutureTask是什么体验?
What do T and Z in the time format 2020-01-13T16:00:00.000Z represent and how to deal with them
莅临GOPS大会龙智展位,获取Forrester最新报告:《Forrester Wave:2021年第四季度企业服务管理报告》
力扣330 按要求补齐数组(贪心)
字节秋招二面把我干懵了,问我SYN报文什么情况下会被丢弃?
2022 极术通讯-基于安谋科技 “星辰” STAR-MC1的灵动MM32F2570开发板深度评测
hdu1455 Sticks(搜索+剪枝+剪枝+.....+剪枝)
hdu4545 魔法串
一张图理解EOS是什么
Keras 分割网络自定义评估函数 - mean iou
【HMS core】【FAQ】Health Kit、Ads kit、push Kit典型问题合集5
澳洲站:电吹风AS/NZS 60335.2.23: 2017 安全标准测试
Version Control | Longzhi invites you to go to the GOPS Global Operation and Maintenance Conference to explore the road of large-scale, agile, high-quality and open software development and operation
普通二本毕业八年,京东就职两年、百度三年,分享大厂心得