B. Kefa and Company

链接:https://codeforces.com/problemset/problem/580/B

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 misi(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

Copy

4 5
75 5
0 100
150 20
75 1

output

Copy

100

input

Copy

5 100
0 7
11 32
99 10
46 8
87 54

output

Copy

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.

代码:

#include<bits/stdc++.h>
using namespace std;
long long n,t,l,r,k,d,ans,max1=0,mod=1e9+7;
struct node{
	long long m;
	long long s;
}x[100005];
bool cmp(node p,node q)
{
	if(p.m!=q.m)
	return p.m>q.m;
	else
	return p.s>q.s;
}
int main()
{
	cin>>n>>d;
	ans=0;
	for(int i=1;i<=n;i++)
	{
		cin>>x[i].m>>x[i].s;
	}
	sort(x+1,x+1+n,cmp);
	for(int i=1,j=1;i<=n;i++)
	{
		if(x[j].m-x[i].m<d)
		{
			ans+=x[i].s;
			max1=max(max1,ans);
		}
		else
		{
			while(x[j].m-x[i].m>=d)
			{
				ans-=x[j].s;
				j++;
			}
			
			ans+=x[i].s;
			max1=max(max1,ans);
		}
	}
	cout<<max1;
	
} 

 

全部评论

相关推荐

码农索隆:以下是我以我微薄的认知提供的建议: 1.考个教师资格证,去当体育考试。 2.去健身房当健身教练(因为在我印象里面体育生身材都不错)。
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务