标签:
[数据约束和评分方法]
60%的测试数据中:1<=N <= 1 000
100%的测试数据中:1<=N <= 20 000
家乡的省选题~ 很好的一道题,一般的LCS时间复杂度是O(n^2), 所以这题应该采用树状数组优化
毕竟我是个蒟蒻,做这题时还不知道树状数组的实现,所以题解我就引用别人的辣~标明出处:http://blog.csdn.net/popoqqq/article/details/39958251?utm_source=tuicool
我们记录a序列中每个数的5个位置
扫一下b[i] 对于每个b[i]找到b[i]在a中的5个位置 这5个位置的每个f[pos]值都可以被b[i]更新 于是找到f[1]到f[pos-1]的最大值+1 更新f[pos]即可
这个用树状数组维护 时间复杂度O(nlogn)
1 #include <cstdio> 2 #include <cmath> 3 #include <cstring> 4 #include <cstdlib> 5 #include <queue> 6 #include <stack> 7 #include <vector> 8 #include <iostream> 9 #include "algorithm" 10 using namespace std; 11 typedef long long LL; 12 const int MAX=20005; 13 int n; 14 int f[MAX*5]={0}; 15 int c[MAX*5]={0},pos[MAX][6]={0}; 16 void update(int x,int y){ 17 for (;x<=5*n;x+=(x&-x)) 18 c[x]=max(c[x],y); 19 } 20 int search(int x){ 21 int z(0); 22 for (;x>0;x-=(x&-x)) 23 z=max(c[x],z); 24 return z; 25 } 26 int main(){ 27 freopen ("match.in","r",stdin); 28 freopen ("match.out","w",stdout); 29 int i,j,k; 30 int ans(0); 31 scanf("%d",&n); 32 for (i=1;i<=5*n;i++) 33 {scanf("%d",&j); 34 pos[j][++pos[j][0]]=i; 35 } 36 for (i=1;i<=5*n;i++) 37 {scanf("%d",&k); 38 for (j=5;j>=1;j--) 39 {int x,y; 40 x=pos[k][j]; 41 y=search(x-1)+1; 42 if (f[x]<y) 43 {f[x]=y; 44 update(x,y); 45 } 46 } 47 } 48 for (i=1;i<=5*n;i++) 49 ans=max(ans,f[i]); 50 printf("%d",ans); 51 return 0; 52 }
BZOJ-1264 :[AHOI2006]基因匹配Match(树状数组+DP)
标签:
原文地址:http://www.cnblogs.com/Michaelzzn/p/5722140.html