记录编号 |
159964 |
评测结果 |
AAAAAAAAAAAAAA |
题目名称 |
奶牛跑步2 |
最终得分 |
100 |
用户昵称 |
wolf. |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.567 s |
提交时间 |
2015-04-23 14:02:45 |
内存使用 |
0.29 MiB |
显示代码纯文本
#include<iostream>
#include<fstream>
#include<bitset>
#include<vector>
#include<deque>
#include<map>
#include<set>
#include<queue>
#include<string>
#include<algorithm>
#include<cmath>
#include<ctime>
#include<cstdio>
using namespace std;
#if defined wolf
const string ok="OK";
const string kk=" ";
ofstream nnew("cowjogb.in",ios::app);
ifstream fin("cowjogb.in");
#define fout cout
#define Endl endl
#else
ifstream fin("cowjogb.in");
ofstream fout("cowjogb.out");
#endif
int main(){
long long n,t;
fin>>n>>t;
vector<long long> TT;
TT.push_back(0);
for(int i=0;i!=n;++i){
long long beg,v;
fin>>beg>>v;
long long end=beg+t*v;
bool fall=1;
for(int i=0;i!=TT.size();++i){
if(end>TT[i]){
TT[i]=end;
fall=0;
break;
}
}
if(fall){
TT.push_back(end);
}
}
fout<<TT.size();
//-------------------------*/
#if defined wolf
cout<<endl<<(double)clock()/CLOCKS_PER_SEC<<'s'<<endl;
#endif
return 0;
}
//Designed by wolf
//Thu Apr 23 2015