码迷,mamicode.com
首页 > 其他好文 > 详细

【模板】最长公共子序列(二维偏序)

时间:2017-11-09 11:51:35      阅读:484      评论:0      收藏:0      [点我收藏+]

标签:code   getch   img   ret   names   blog   clu   pos   const   

给出1-n的两个排列P1和P2,求它们的最长公共子序列。

洛谷1439

技术分享
 1 #include<cstdio>
 2 #include<algorithm>
 3 using namespace std;
 4 const int maxn=100010;
 5 int n,x,ans,tmp,pos[maxn],t[maxn];
 6 void read(int &k){
 7     k=0; int f=1; char c=getchar();
 8     while(c<0||c>9)c==-&&(f=-1),c=getchar();
 9     while(0<=c&&c<=9)k=k*10+c-0,c=getchar();
10     k*=f;
11 } 
12 void add(int x,int y){for(;x<=n;x+=(x&-x)) t[x]=max(t[x],y);}
13 int query(int x){int ret=0;for(;x>0;x-=(x&-x))ret=max(ret,t[x]);return ret;}
14 int main(){
15     read(n);
16     for (int i=1;i<=n;i++) read(x),pos[x]=i;
17     for (int i=1;i<=n;i++) read(x),tmp=query(pos[x]),ans=max(ans,tmp+1),add(pos[x],tmp+1);
18     return printf("%d\n",ans),0;
19 }
View Code

 

【模板】最长公共子序列(二维偏序)

标签:code   getch   img   ret   names   blog   clu   pos   const   

原文地址:http://www.cnblogs.com/DriverLao/p/7807672.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!