原题链接:https://www.acwing.com/problem/content/804/
解题思路:这题用的离散化很想hash,都是将一个很长很长的数组映射到一个短一点的数组,只是映射方法不同。离散化是通过建立新数组,将原数组的下标从小到大依次排入新数组,映射出的新数组每个位置都有元素,原数组有很多空位,这样就可以节约很大的空间和运算时间(主要)
#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
typedef pair<int, int>PII;
const int N = 3e5 + 10;
vector<PII>add, query;
vector<int>alls;
int a[N], s[N];
int n, m;
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;//映射后的数组下标从1开始
}
int main()
{
cin.tie(0);
cout.tie(0);
ios::sync_with_stdio(false);
cin>>n>>m;
for(int i = 0; i < n; i ++ ){
int x, c;
cin>>x>>c;
add.push_back({x, c});//记录原数组x位置需要+c
alls.push_back(x);//将出现过的下表储存到alls中,为了统计总共需要多少数组
}
for(int i = 0; i < m; i ++ ){
int l, r;
cin>>l>>r;
query.push_back({l, r});//记录需要查询的区间[l, r]
alls.push_back(l);//将出现过的下表储存到alls中,为了统计总共需要多少数组
alls.push_back(r);//将出现过的下表储存到alls中,为了统计总共需要多少数组
}
sort(alls.begin(), alls.end());//对alls容器内元素排序
alls.erase(unique(alls.begin(), alls.end()), alls.end());//对alls容器内元素去重
for(auto item : add){
int x = find(item.first);//将原数组的下标映射到离散化数组
a[x] += item.second;//将原数组的值按下标赋给离散化数组
}
for(int i = 1; i <= alls.size(); i ++ ){
s[i] = s[i - 1] + a[i];//计算离散化数组的前缀和
}
for(auto item : query){//遍历query这个容器
int l = find(item.first);
int r = find(item.second);
cout<<s[r] - s[l - 1]<<endl;
}
return 0;
}