记录编号 |
195522 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[HNOI 2004] 打鼹鼠 |
最终得分 |
100 |
用户昵称 |
devil |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
1.337 s |
提交时间 |
2015-10-19 08:23:45 |
内存使用 |
0.47 MiB |
显示代码纯文本
#include <cstdlib>
#include <iostream>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <map>
#include <stack>
#include <vector>
#include <map>
#include <queue>
#include <ctime>
#include <algorithm>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
typedef unsigned int uint;
const int inf=1061109567;
const int maxn=10010;
const int maxm=20;
const int mod=1000000007;
struct node
{
int x,y,t;
} a[maxn];
int f[maxn];
int Abs(int x) {return (x<0)?-x:x;}
int dist(int i,int j) {return Abs(a[i].x-a[j].x)+Abs(a[i].y-a[j].y);}
int main()
{
freopen("mouse.in","r",stdin);
freopen("mouse.out","w",stdout);
//clock_t st=clock();
int n,m;scanf("%d%d",&n,&m);
for(int i=1;i<=m;i++)
{
scanf("%d%d%d",&a[i].t,&a[i].x,&a[i].y);
f[i]=1;
}
for(int i=1;i<=m;i++)
{
for(int j=1;j<i;j++)
{
if(a[i].t-a[j].t>=dist(i,j))
f[i]=max(f[i],f[j]+1);
}
}
int ans=0;
for(int i=1;i<=m;i++) ans=max(ans,f[i]);
printf("%d\n",ans);
//clock_t ed=clock();
//printf("\nTime used : %.5lf Ms\n",double(ed-st)/CLOCKS_PER_SEC);
return 0;
}