比赛 20150422 评测结果 AAAAAAAAAAAAAAA
题目名称 奶牛跑步 最终得分 100
用户昵称 Chenyao2333 运行时间 0.428 s
代码语言 C++ 内存使用 1.81 MiB
提交时间 2015-04-22 08:38:55
显示代码纯文本
#include<cstdio>
#include<algorithm>
using namespace std;
const int L_N=1e5+10;
typedef long long LL;
LL N,T;
LL s[L_N],v[L_N];
int main(){
	freopen("cowjoga.in","r",stdin);
	freopen("cowjoga.out","w",stdout);
	scanf("%lld %lld",&N,&T);
	for(int i=1;i<=N;i++) scanf("%lld %lld",s+i,v+i);
	int ans=N;
	LL last=s[N]+v[N]*T;
	for(int i=N-1;i>=1;i--){
		LL p=s[i]+v[i]*T;
		if(p>=last) ans--;
		else last=p;
	}
	printf("%d\n",ans);
	return 0;
}