Codeforces Round #321 (Div. 2) B 二分

CrossDolphin發表於2016-07-11



連結:戳這裡


B. Kefa and Company
time limit per test2 seconds
memory limit per test256 megabytes
inputstandard input
outputstandard output
Kefa wants to celebrate his first big salary by going to restaurant. However, he needs company.

Kefa has n friends, each friend will agree to go to the restaurant if Kefa asks. Each friend is characterized by the amount of money he has and the friendship factor in respect to Kefa. The parrot doesn't want any friend to feel poor compared to somebody else in the company (Kefa doesn't count). A friend feels poor if in the company there is someone who has at least d units of money more than he does. Also, Kefa wants the total friendship factor of the members of the company to be maximum. Help him invite an optimal company!

Input
The first line of the input contains two space-separated integers, n and d (1 ≤ n ≤ 105, ) — the number of Kefa's friends and the minimum difference between the amount of money in order to feel poor, respectively.

Next n lines contain the descriptions of Kefa's friends, the (i + 1)-th line contains the description of the i-th friend of type mi, si (0 ≤ mi, si ≤ 109) — the amount of money and the friendship factor, respectively.

Output
Print the maximum total friendship factir that can be reached.

Examples
input
4 5
75 5
0 100
150 20
75 1
output
100
input
5 100
0 7
11 32
99 10
46 8
87 54
output
111
Note
In the first sample test the most profitable strategy is to form a company from only the second friend. At all other variants the total degree of friendship will be worse.

In the second sample test we can take all the friends.


題意:

給出n個人的金錢值以及友誼值,問能組成長度為d的金錢區間使得友誼之最大


思路:

列舉每個i作為左區間,二分右區間


程式碼:

#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<string>
#include<vector>
#include <ctime>
#include<queue>
#include<set>
#include<map>
#include<stack>
#include<iomanip>
#include<cmath>
#define mst(ss,b) memset((ss),(b),sizeof(ss))
#define maxn 0x3f3f3f3f
#define MAX 1000100
///#pragma comment(linker, "/STACK:102400000,102400000")
typedef long long ll;
typedef unsigned long long ull;
#define INF (1ll<<60)-1
using namespace std;
struct node{
    ll x,v;
    bool operator < (const node &a)const{
        return x<a.x;
    }
}s[100100];
ll n,d;
ll sum[100100];
int main(){
    scanf("%I64d%I64d",&n,&d);
    for(int i=1;i<=n;i++) scanf("%I64d%I64d",&s[i].x,&s[i].v);
    sort(s+1,s+n+1);
    sum[0]=0;
    for(int i=1;i<=n;i++) sum[i]=sum[i-1]+s[i].v;
    ll ans=0;
    for(int i=1;i<=n;i++){
        int l=i,r=n,mid,f=i;
        while(l<=r){
            mid=(l+r)/2;
            if(s[mid].x-s[i].x<d){
                l=mid+1;
                f=mid;
            } else r=mid-1;
        }
        ans=max(ans,sum[f]-sum[i-1]);
    }
    cout<<ans<<endl;
    return 0;
}


相關文章