记录编号 |
294723 |
评测结果 |
AAAAAAAAAA |
题目名称 |
懒人的工作 |
最终得分 |
100 |
用户昵称 |
AntiLeaf |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.000 s |
提交时间 |
2016-08-12 17:21:54 |
内存使用 |
0.00 MiB |
显示代码纯文本
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<vector>
using namespace std;
const int maxn=10010;
int n,m,a[maxn],s,t,f[maxn]={0};
vector<int>r[maxn];
inline int MAIN(){
#define MINE
#ifdef MINE
freopen("lazy.in","r",stdin);
freopen("lazy.out","w",stdout);
#endif
scanf("%d%d",&n,&m);
while(m--){
scanf("%d%d",&s,&t);
r[s].push_back(s+t);
}
for(int i=n;i;i--){
if(r[i].empty())f[i]=f[i+1]+1;
else for(vector<int>::iterator it=r[i].begin();it!=r[i].end();it++)
f[i]=max(f[i],f[*it]);
}
printf("%d",f[1]);
return 0;
}
int hzoier=MAIN();
int main(){;}