概述
题目链接
思路:差分,但是由于数据很大所以需要使用map
#include<bits/stdc++.h>
using namespace std;
const int N = 1e6+5;
int arr[N],arr2[N];
#define int long long
map<int,int>mp;
void solve(){
int n,C;
cin>>n>>C;
int a,b,c;
for(int i =0;i<n;i++){
cin>>a>>b>>c;
mp[a] +=c;
mp[b+1]-=c;
}
int ans = 0 ,temp = 0, s =0;
for(auto mm :mp){
ans+= (mm.first-temp)*min(s,C);
temp = mm.first;
s+=mm.second;
}
cout<<ans<<endl;
}
signed main(){
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int _= 1;
//cin>>_;
while (_--) {
solve();
}
}
最后
以上就是文静月光为你收集整理的D - Snuke Prime(大数差分)的全部内容,希望文章能够帮你解决D - Snuke Prime(大数差分)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复