AcWing 802 区间和 (离散化)

该博客介绍了如何使用离散化解决AcWing 802题目的区间和问题。离散化是一种类似于哈希的技术,它将长数组映射到短数组,保持下标顺序,并能节省空间和运算时间,特别适用于处理包含大量空位的原数组。
摘要由CSDN通过智能技术生成

原题链接: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;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值