當前位置:
首頁 >
Codeforces Round #321 (Div. 2) Kefa and Company 二分
發布時間:2024/10/12
72
豆豆
生活随笔
收集整理的這篇文章主要介紹了
Codeforces Round #321 (Div. 2) Kefa and Company 二分
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
原題鏈接:http://codeforces.com/contest/580/problem/B
題意:
給你一個集合,集合中的每個元素有兩個屬性,$m_i,s_i$,讓你求個子集合,使得集合中的最大m的差不超過d的情況下,s的和的最大值。
題解:
先排序,然后對于a[i],直接二分a[i].s+d的位置,然后維護一個前綴和,更新答案即可。
代碼:
#include<iostream> #include<cstring> #include<algorithm> #include<vector> #define MAX_N 100005 using namespace std;typedef long long ll;struct node{ public:ll m,s;bool operator<(const ll &x)const {return m < x;} };node a[MAX_N];bool cmp(node x,node y) {return x.m < y.m; }int n; ll d;ll sum[MAX_N];int main() {cin.sync_with_stdio(false);cin >> n >> d;for (int i = 0; i < n; i++)cin >> a[i].m >> a[i].s;sort(a, a + n,cmp);sum[0] = a[0].s;for (int i = 1; i < n; i++)sum[i] = sum[i - 1] + a[i].s;ll ans = 0;for (int i = 0; i < n; i++) {int t = lower_bound(a, a + n, a[i].m + d) - a - 1;if (i == 0)ans = max(ans, sum[t]);elseans = max(ans, sum[t] - sum[i - 1]);}cout<<ans<<endl;return 0; }?
轉載于:https://www.cnblogs.com/HarryGuo2012/p/4831099.html
總結
以上是生活随笔為你收集整理的Codeforces Round #321 (Div. 2) Kefa and Company 二分的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 张家港哪里有卖液压车的地方张家港哪里有卖
- 下一篇: iOS相册实现与AssetsLibrar