比赛 |
20150423 |
评测结果 |
AAAAAATAAAAAAA |
题目名称 |
奶牛跑步2 |
最终得分 |
92 |
用户昵称 |
清羽 |
运行时间 |
7.134 s |
代码语言 |
C++ |
内存使用 |
1.08 MiB |
提交时间 |
2015-04-23 11:03:55 |
显示代码纯文本
//by tsingyawn
/*
贪心问题
k表示当前跑道数
pos[i]表示每个跑道上最慢的奶牛结束时的位置
end[i]表示奶牛i结束时的位置
策略:对于每个新加进来的奶牛,选择一个pos值比其end大,且最小的跑道。
小结论:从后往前扫,则如果位置较小的一个点的终止位置比位置较大的一个点
的终止位置小,则两牛不可能相遇
*/
#include<cstdio>
#include<iostream>
#include<cstring>
#include<ctime>
#include<set>
#include<algorithm>
using namespace std;
typedef long long LL;
const int maxn=100050;
const LL INF=9223372036854775807;
multiset<LL> s;
char buf[40];
LL T,n,k,end[maxn];
template<class T> inline bool getd(T& x)
{
int ch=getchar();
bool neg=false;
while(ch!=EOF && ch!='-' && !isdigit(ch)) ch=getchar();
if(ch==EOF) return false;
if(ch=='-'){
neg=true;
ch=getchar();
}
x=ch-'0';
while(isdigit(ch=getchar())) x=x*10+ch-'0';
if(neg) x=-x;
return true;
}
template<class M> inline void putd(M x)
{
int p=0;
if(x<0){
putchar('-');
x=-x;
}
if(x==0) buf[p++]=x;
while(x){
buf[p++]=x%10;
x/=10;
}
for(int i=p-1;i>=0;i--) putchar(buf[i]+'0');
putchar('\n');
}
void init()
{
getd(n);getd(T);
for(int i=0;i<n;i++){
LL x,v;
getd(x);getd(v);
end[i]=x+v*T;
}
}
void work()
{
k=0;
s.clear();
for(int i=n-1;i>=0;i--){
multiset<LL>::iterator it;
it=upper_bound(s.begin(),s.end(),end[i]);
if(it==s.end()) k++;
else s.erase(it);
s.insert(end[i]);
// for(it=s.begin();it!=s.end();it++) printf("%d ",*it);
// printf("\n");
}
putd(k);
}
int main()
{
freopen("cowjogb.in","r",stdin);
freopen("cowjogb.out","w",stdout);
init();
work();
fclose(stdin);
fclose(stdout);
return 0;
}