BZOJ 1207 [HNOI2004]打鼹鼠(简单dp)

Posted 采蘑菇的小西佬

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了BZOJ 1207 [HNOI2004]打鼹鼠(简单dp)相关的知识,希望对你有一定的参考价值。

BZOJ 1207

题解:做满足条件的最大上升子序列处理即可

 1 #include <iostream>
 2 #include <cstdio>
 3 #include <cmath>
 4 #include <algorithm>
 5 #include <map>
 6 #include <queue>
 7 #include <vector>
 8 #include <cstring>
 9 #include <iomanip>
10 using namespace std;
11 const int N=1e4+5;
12 int t[N],x[N],y[N],dp[N];
13 int main(){
14     int n,m;
15     scanf("%d %d",&n,&m);
16     int mx=0;
17     for(int i=1;i<=m;i++){
18         scanf("%d %d %d",&t[i],&x[i],&y[i]);
19         dp[i]=1;
20         for(int j=1;j<i;j++){
21             if(abs(x[i]-x[j])+abs(y[i]-y[j])<=t[i]-t[j])
22                 dp[i]=max(dp[i],dp[j]+1),mx=max(mx,dp[i]);
23                 
24         }
25     }
26     printf("%d\n",mx);
27     
28     return 0;
29     
30 }

 

以上是关于BZOJ 1207 [HNOI2004]打鼹鼠(简单dp)的主要内容,如果未能解决你的问题,请参考以下文章

BZOJ1207 [HNOI2004] 打鼹鼠

bzoj 1207: [HNOI2004]打鼹鼠

BZOJ-1207: [HNOI2004]打鼹鼠 (LIS类似DP)

bzoj 1207: [HNOI2004]打鼹鼠

BZOJ-1207: [HNOI2004]打鼹鼠 (LIS类似DP)

bzoj1207: [HNOI2004]打鼹鼠