分析
考虑一个贪心,由于 x i x_i xi 呈线性排列,我们一定要保证去到的机房越多越好,所以将 x x x 排序,每次前往最近的机房,如果可以 AK 则 AK,累加答案。
代码实现
我相信我的解法一定有漏洞,欢迎各位 dalao 来 hack。
#include <bits/stdc++.h>
#define int long long
using namespace std;
inline int read(){
int x=0,f=0;char ch=getchar();
while(!isdigit(ch))f^=!(ch^45),ch=getchar();
while(isdigit(ch))x=(x<<1)+(x<<3)+(ch^48),ch=getchar();
return f?-x:x;
}
int n,m,ans,pos;
int x[100005];
int t[100005];
signed main(){
n=read();m=read();
for(int i=1;i<=n;i++)x[i]=read(),t[i]=read();
sort(x+1,x+n+1);
for(int i=1;i<=n&&m;i++){
m-=abs(x[i]-pos);pos=x[i];
if(t[i]<=m)m-=t[i],ans++;
}
cout<<ans;
//system("pause");
}