解题思路
比较简单的一道思路题,首先假设他们没有前面牛的限制,算出每只牛最远能跑多远。然后按照初位置从大到小扫一遍,如果末位置大于等于前面的牛,那么就说明这两头牛连一块了。
代码
#include<iostream>
#include<cstdio>
#include<cstring>
#include<cmath>
using namespace std;
const int MAXN = 100005;
typedef long long LL;
inline int rd(){
int x=0,f=1;char ch=getchar();
while(!isdigit(ch)) {f=ch=='-'?-1:1;ch=getchar();}
while(isdigit(ch)) {x=(x<<1)+(x<<3)+ch-'0';ch=getchar();}
return x*f;
}
int n,T,ans;
int st[MAXN],v[MAXN];
LL last[MAXN];
int main(){
n=rd();T=rd();
for(register int i=1;i<=n;i++){
st[i]=rd();v[i]=rd();
last[i]=st[i]+(LL)v[i]*T;
}
LL now=1e18;
for(register int i=n;i;i--)
if(last[i]<now) ans++,now=last[i];
cout<<ans<<endl;
return 0;
}