bzoj1207: [HNOI2004]打鼹鼠
一道水水的DP,打少了个等号wa了一次。。。。
#include<cstdio> #include<iostream> #include<cstring> #include<algorithm> using namespace std; int f[11000],t[11000],x[110000],y[11000]; int main() { int n,m,ans=0; scanf("%d%d",&n,&m); for(int i=1;i<=m;i++) { scanf("%d%d%d",&t[i],&x[i],&y[i]); f[i]=1; for(int j=i-1;j>=1;j--) if( abs(x[i]-x[j])+abs(y[i]-y[j]) <= t[i]-t[j] ) f[i]=max(f[i],f[j]+1); ans=max(ans,f[i]); } printf("%d\n",ans); return 0; }
pain and happy in the cruel world.