AcWing 802.区间和
2022/5/4 23:16:13
本文主要是介绍AcWing 802.区间和,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
AcWing 802.区间和
题目描述
假定有一个无限长的数轴,数轴上每个坐标上的数都是 0。
现在,我们首先进行 n次操作,每次操作将某一位置 x 上的数加 c。
接下来,进行 m次询问,每个询问包含两个整数 l 和 r,你需要求出在区间 [l,r] 之间的所有数的和。
输入格式
第一行包含两个整数 n 和 m。
接下来 n行,每行包含两个整数 x 和 c。
再接下来 m
行,每行包含两个整数 l 和 r。
输出格式
共 m 行,每行输出一个询问中所求的区间内数字和。
数据范围
−10^9 ≤x≤ 10^9,
1≤n,m≤10^5,
−10^9 ≤l≤r≤ 10^9,
−10000≤c≤10000
输入样例
3 3 1 2 3 6 7 5 1 3 4 6 7 8
输出样例
8 0 5
题目思路
将所有有关的下表进行离散化处理。
#include<cstdio> #include<iostream> #include<algorithm> #include<vector> using namespace std; const int N = 3e5+10; typedef pair<int,int> PII; vector<int> alls; vector<PII> add,query; int a[N],s[N]; int find(int x) { int l = 0,r = alls.size()-1; while(l < r) { int mid = l + r >> 1; if(alls[mid]>=x)r = mid; else l = mid + 1; } return l + 1; } int main() { int n,m; cin >> n >> m; for(int i=0;i<n;i++) { int x,c; scanf("%d%d",&x,&c); add.push_back({x,c}); alls.push_back(x); } for(int i=0;i<m;i++) { int l,r; scanf("%d%d",&l,&r); query.push_back({l,r}); alls.push_back(l); alls.push_back(r); } sort(alls.begin(),alls.end()); alls.erase(unique(alls.begin(),alls.end()),alls.end()); for(auto item : add) { int x = find(item.first); a[x] += item.second; } for(int i=1;i<=alls.size();i++)s[i] = a[i]+s[i-1]; for(auto item : query) { int l = find(item.first),r = find(item.second); cout << s[r]-s[l-1] << endl; } return 0; }
这篇关于AcWing 802.区间和的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-27Nacos多环境配置学习入门
- 2024-12-27Nacos快速入门学习入门
- 2024-12-27Nacos快速入门学习入门
- 2024-12-27Nacos配置中心学习入门指南
- 2024-12-27Nacos配置中心学习入门
- 2024-12-27Nacos做项目隔离学习入门
- 2024-12-27Nacos做项目隔离学习入门
- 2024-12-27Nacos初识学习入门:轻松掌握服务发现与配置管理
- 2024-12-27Nacos初识学习入门:轻松掌握Nacos基础操作
- 2024-12-27Nacos多环境配置学习入门