您的位置:首页 > 其它

codeforce B Kefa and Company

2016-07-22 08:30 337 查看
B
Kefa and Company

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.

Sample test(s)

input
4 5
75 5
0 100
150 20
75 1


output
100


input
5 1000 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.

题意:
Kefa 有n个朋友,每个人有不同的钱和友谊度,问朋友间的钱差值都不大于d时,最大的友谊度。
先对钱排序,再循环找最大友谊度。(关键!!没想到!!)
sum=0;maxn=0;l=0;
for(int i=0;i<n;i++)
{
sum+=per[i].s;
while(per[i].m-per[l].m>=d)
{
sum-=per[l].s;
l++ ;
}
if(maxn<sum)
maxn=sum;
}


代码:
#include<cstdio>
#include<algorithm>
using namespace std;
struct Node{
int m,s;
}per[100000+10];
bool cmp(Node a,Node b)
{
return a.m<b.m;
}
int main()
{
int n,d,t;
long long sum,maxn,ans[100000+10],l;
while(~scanf("%d%d",&n,&d))
{
for(int i=0;i<n;i++)
{
scanf("%d%d",&per[i].m,&per[i].s);
}
sort(per,per+n,cmp);
//		 for(int i=0;i<n;i++)//暴力循环超时
//		 {
//		 	ans[i]=per[i].s;
//		 	for(int j=i+1;j<n;j++)
//			 {
//			 	if(per[j].m-per[i].m>=d)
//			 		break;
//				 ans[i]+=per[j].s;
//			  }
//		 }
//		 sort(ans,ans+n);
sum=0;maxn=0;l=0;
for(int i=0;i<n;i++)
{
sum+=per[i].s;
while(per[i].m-per[l].m>=d)
{
sum-=per[l].s;
l++ ;
}
if(maxn<sum)
maxn=sum;
}
printf("%lld\n",maxn);
}
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: